Fixed typo

This commit is contained in:
snipe 2018-07-17 01:03:32 -07:00
parent 3fb5f6f5be
commit aa6c21f38d
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ class LogFailedLogin
'user_agent' => request()->header('User-Agent'),
'remote_ip' => request()->ip(),
'successful' => 0,
'created_at' => $now;
'created_at' => $now,
]
);
} catch (\Exception $e) {

View file

@ -37,7 +37,7 @@ class LogSuccessfulLogin
'user_agent' => request()->header('User-Agent'),
'remote_ip' => request()->ip(),
'successful' => 1,
'created_at' => $now
'created_at' => $now,
]
);
} catch (\Exception $e) {