From 181f462bb34d8cab98525536077179c6ab1bc89c Mon Sep 17 00:00:00 2001
From: Sam Light <samlight1994@gmail.com>
Date: Thu, 10 Apr 2025 00:47:09 +0100
Subject: Fix bugs with the AuthLogServiceProvider

---
 src/AuthLogServiceProvider.php | 6 +++---
 1 file 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);
-- 
cgit v1.2.3