@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create(config('authentication-log.table_name'), function (Blueprint $table) { |
|
16 | + Schema::create(config('authentication-log.table_name'), function(Blueprint $table) { |
|
17 | 17 | $table->bigIncrements('id'); |
18 | 18 | $table->morphs('auth'); |
19 | 19 | $table->string('ip_address', 45)->nullable(); |
@@ -72,7 +72,7 @@ |
||
72 | 72 | ->from(config('app.name')) |
73 | 73 | ->warning() |
74 | 74 | ->content(trans('authentication-log::messages.content', ['app' => config('app.name')])) |
75 | - ->attachment(function ($attachment) use ($notifiable) { |
|
75 | + ->attachment(function($attachment) use ($notifiable) { |
|
76 | 76 | $attachment->fields([ |
77 | 77 | 'Account' => $notifiable->email, |
78 | 78 | 'Time' => $this->authenticationLog->login_at->toCookieString(), |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $userAgent = $this->request->userAgent(); |
42 | 42 | $authenticationLog = $user->authentications()->whereIpAddress($ip)->whereUserAgent($userAgent)->first(); |
43 | 43 | |
44 | - if (! $authenticationLog) { |
|
44 | + if (!$authenticationLog) { |
|
45 | 45 | $authenticationLog = new AuthenticationLog([ |
46 | 46 | 'ip_address' => $ip, |
47 | 47 | 'user_agent' => $userAgent, |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | $user->authentications()->save($authenticationLog); |
51 | 51 | |
52 | - if (! $known && config('authentication-log.notify')) { |
|
52 | + if (!$known && config('authentication-log.notify')) { |
|
53 | 53 | $user->notify(new NewDevice($authenticationLog)); |
54 | 54 | } |
55 | 55 | } |