diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/AuthLogServiceProvider.php | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/AuthLogServiceProvider.php b/src/AuthLogServiceProvider.php index f104997..0748f34 100644 --- a/src/AuthLogServiceProvider.php +++ b/src/AuthLogServiceProvider.php @@ -14,12 +14,12 @@ class AuthLogServiceProvider extends ServiceProvider          $root = "{$dir}/..";          $this->publishesMigrations([ -            "{$root}/database/migrations" => database_path('migrations', "{$ns}:migrations"), -        ]); +            "{$root}/database/migrations" => database_path('migrations'), +        ], "{$ns}:migrations");          $this->mergeConfigFrom("$root/config/auth_log.php", 'auth_log');          $this->publishes([ -            "{$root}/config/access_log.php" => config_path('auth_log.php'), +            "{$root}/config/auth_log.php" => config_path('auth_log.php'),          ], "{$ns}:config");          Event::subscribe(AuthSubscriber::class); | 
