Skip to content

Commit dbd861f

Browse files
committed
Fixes and clarify
1 parent e550b22 commit dbd861f

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

app/Listeners/SendArticleApprovedNotification.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Listeners;
46

57
use App\Events\ArticleWasApproved;

app/Listeners/SendEmailVerificationNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
final class SendEmailVerificationNotification
1010
{
11-
public function handle(EmailAddressWasChanged $event)
11+
public function handle(EmailAddressWasChanged $event): void
1212
{
1313
$event->user->sendEmailVerificationNotification();
1414
}

app/Listeners/SendNewReplyNotification.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Listeners;
46

57
use App\Events\ReplyWasCreated;

resources/lang/en/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
1818

1919
'verification' => [
20-
'sent' => 'Email verification sent to :0',
20+
'sent' => 'Email verification sent to :0. You can change your email address in your profile settings.',
2121
'already_verified' => 'Your email address is already verified.',
2222
'success' => 'Your email address was successfully verified.',
2323
'no_match' => 'We could not verify your email address. The given email address and code did not match.',

0 commit comments

Comments
 (0)