Passed
Push — main ( 9bac24...a0c0c8 )
by ikechukwu
02:53
created
src/Notifications/WelcomeUser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
     public function toMail($notifiable)
19 19
     {
20 20
         return (new MailMessage)
21
-                    ->subject(trans('sanctumauthstarter::notify.welcome.subject', ['name' => $this->user->name]))
22
-                    ->line(trans('sanctumauthstarter::notify.welcome.introduction', ['name' => $this->user->name]))
21
+                    ->subject(trans('sanctumauthstarter::notify.welcome.subject', [ 'name' => $this->user->name ]))
22
+                    ->line(trans('sanctumauthstarter::notify.welcome.introduction', [ 'name' => $this->user->name ]))
23 23
                     ->line(trans('sanctumauthstarter::notify.welcome.message'))
24 24
                     ->action(trans('sanctumauthstarter::notify.welcome.action'), url(config('sanctumauthstarter.notification_url.registration.welcome_user')))
25 25
                     ->line(trans('sanctumauthstarter::notify.welcome.complimentary_close'));
Please login to merge, or discard this patch.
src/Notifications/UserLogin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         return (new MailMessage)
21 21
             ->subject(trans('sanctumauthstarter::notify.login.subject'))
22
-            ->line(trans('sanctumauthstarter::notify.login.introduction', ['time' => $this->time, 'deviceAndLocation' => $this->deviceAndLocation]))
22
+            ->line(trans('sanctumauthstarter::notify.login.introduction', [ 'time' => $this->time, 'deviceAndLocation' => $this->deviceAndLocation ]))
23 23
             ->line(trans('sanctumauthstarter::notify.login.message'))
24 24
             ->action(trans('sanctumauthstarter::notify.login.action'), route(config('sanctumauthstarter.notification_url.login.user_login')))
25 25
             ->line(trans('sanctumauthstarter::notify.login.complimentary_close'));
Please login to merge, or discard this patch.