@@ -9,7 +9,7 @@ |
||
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) |
@@ -32,7 +32,7 @@ |
||
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 |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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 | } |