Passed
Push — master ( f00e13...08d369 )
by Yaakov
04:41
created
src/Notifications/NewDevice.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
         return (new SlackMessage)
72 72
             ->from(config('app.name'))
73 73
             ->warning()
74
-            ->content(trans('authentication-log::messages.content', ['app' => config('app.name')]))
75
-            ->attachment(function ($attachment) use ($notifiable) {
74
+            ->content(trans('authentication-log::messages.content', [ 'app' => config('app.name') ]))
75
+            ->attachment(function($attachment) use ($notifiable) {
76 76
                 $attachment->fields([
77 77
                     'Account' => $notifiable->email,
78 78
                     'Time' => $this->authenticationLog->login_at->toCookieString(),
@@ -91,6 +91,6 @@  discard block
 block discarded – undo
91 91
     public function toNexmo($notifiable)
92 92
     {
93 93
         return (new NexmoMessage)
94
-            ->content(trans('authentication-log::messages.content', ['app' => config('app.name')]));
94
+            ->content(trans('authentication-log::messages.content', [ 'app' => config('app.name') ]));
95 95
     }
96 96
 }
Please login to merge, or discard this patch.