Completed
Push — master ( b3c9bd...74f231 )
by Jeremy
369:40 queued 304:36
created
src/config/laravel-logger.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
     | Laravel Logger Authentication Listeners Enable/Disable
34 34
     |--------------------------------------------------------------------------
35 35
     */
36
-    'logAllAuthEvents'      => false,   // May cause a lot of duplication.
37
-    'logAuthAttempts'       => false,   // Successful and Failed -  May cause a lot of duplication.
38
-    'logFailedAuthAttempts' => true,    // Failed Logins
39
-    'logLockOut'            => true,    // Account Lockout
40
-    'logPasswordReset'      => true,    // Password Resets
41
-    'logSuccessfulLogin'    => true,    // Successful Login
42
-    'logSuccessfulLogout'   => true,    // Successful Logout
36
+    'logAllAuthEvents'      => false, // May cause a lot of duplication.
37
+    'logAuthAttempts'       => false, // Successful and Failed -  May cause a lot of duplication.
38
+    'logFailedAuthAttempts' => true, // Failed Logins
39
+    'logLockOut'            => true, // Account Lockout
40
+    'logPasswordReset'      => true, // Password Resets
41
+    'logSuccessfulLogin'    => true, // Successful Login
42
+    'logSuccessfulLogout'   => true, // Successful Logout
43 43
 
44 44
     /*
45 45
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/app/Http/Controllers/LaravelLoggerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     private function mapAdditionalDetails($collectionItems)
47 47
     {
48
-        $collectionItems->map(function ($collectionItem) {
48
+        $collectionItems->map(function($collectionItem) {
49 49
             $eventTime = Carbon::parse($collectionItem->updated_at);
50 50
             $collectionItem['timePassed'] = $eventTime->diffForHumans();
51 51
             $collectionItem['userAgentDetails'] = UserAgentDetails::details($collectionItem->useragent);
Please login to merge, or discard this patch.