diff options
author | Sam Light <samlight1994@gmail.com> | 2025-04-10 00:47:09 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-10 00:47:09 +0100 |
commit | 181f462bb34d8cab98525536077179c6ab1bc89c (patch) | |
tree | 37056ee0f826957feb1f8304c7fc3c5507f2ee62 /src | |
parent | 16c9211f738a039d77f0e5efb26742c98cdebd54 (diff) |
Fix bugs with the AuthLogServiceProviderv1.0.0
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); |