From 7fd4cf2f20a613c4165d4836d72882dd6a4e7f16 Mon Sep 17 00:00:00 2001 From: Jonas Weigert Date: Thu, 9 May 2024 18:06:42 -0500 Subject: [PATCH] fix queue job for uncaught exception testing --- src/LaravelLogTest/Console/Commands/LogTestQueue.php | 2 +- src/LaravelLogTest/Jobs/ThrowUncaughtException.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LaravelLogTest/Console/Commands/LogTestQueue.php b/src/LaravelLogTest/Console/Commands/LogTestQueue.php index c9b96c5..a35109b 100644 --- a/src/LaravelLogTest/Console/Commands/LogTestQueue.php +++ b/src/LaravelLogTest/Console/Commands/LogTestQueue.php @@ -2,8 +2,8 @@ namespace LaravelLogTest\Console\Commands; -use App\Jobs\ThrowUncaughtException; use Illuminate\Console\Command; +use LaravelLogTest\Jobs\ThrowUncaughtException; class LogTestQueue extends Command { diff --git a/src/LaravelLogTest/Jobs/ThrowUncaughtException.php b/src/LaravelLogTest/Jobs/ThrowUncaughtException.php index 8b5b0c3..e74a421 100644 --- a/src/LaravelLogTest/Jobs/ThrowUncaughtException.php +++ b/src/LaravelLogTest/Jobs/ThrowUncaughtException.php @@ -1,6 +1,6 @@