Passed
Push — master ( 1307b5...67961d )
by Moecasts
11:44 queued 05:54
created
src/Cacher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public static function getCacheKey($loggable)
11 11
     {
12
-        return $loggable->getMorphClass() . '-' . $loggable->getKey() . '-login-log';
12
+        return $loggable->getMorphClass().'-'.$loggable->getKey().'-login-log';
13 13
     }
14 14
 
15 15
     public static function getCacheContent($loggable)
Please login to merge, or discard this patch.
src/UserLoginLogServiceProvider.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         if (\function_exists('config_path')) {
34 34
             $this->publishes([
35
-              __DIR__ . '/../config/loginlog.php' => config_path('loginlog.php')
35
+                __DIR__ . '/../config/loginlog.php' => config_path('loginlog.php')
36 36
             ], 'laravel-user-login-log-config');
37 37
         }
38 38
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function register()
15 15
     {
16 16
         $this->mergeConfigFrom(
17
-            \dirname(__DIR__) . '/config/loginlog.php',
17
+            \dirname(__DIR__).'/config/loginlog.php',
18 18
             'loginlog'
19 19
         );
20 20
     }
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
 
33 33
         if (\function_exists('config_path')) {
34 34
             $this->publishes([
35
-              __DIR__ . '/../config/loginlog.php' => config_path('loginlog.php')
35
+              __DIR__.'/../config/loginlog.php' => config_path('loginlog.php')
36 36
             ], 'laravel-user-login-log-config');
37 37
         }
38 38
 
39 39
         $this->publishes([
40
-            __DIR__ . '/../database/migrations' => database_path('migrations'),
40
+            __DIR__.'/../database/migrations' => database_path('migrations'),
41 41
         ], 'laravel-user-login-log-migrations');
42 42
     }
43 43
 }
Please login to merge, or discard this patch.