From 1f8db1ce6af64e0ea58713e5702d8c10b8bc11a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 17:03:11 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Bootstrappers/PersistentQueueTenancyBootstrapper.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Bootstrappers/PersistentQueueTenancyBootstrapper.php b/src/Bootstrappers/PersistentQueueTenancyBootstrapper.php index a51a24ee..3258769a 100644 --- a/src/Bootstrappers/PersistentQueueTenancyBootstrapper.php +++ b/src/Bootstrappers/PersistentQueueTenancyBootstrapper.php @@ -5,16 +5,16 @@ declare(strict_types=1); namespace Stancl\Tenancy\Bootstrappers; use Illuminate\Config\Repository; -use Illuminate\Queue\QueueManager; -use Stancl\Tenancy\Contracts\Tenant; +use Illuminate\Contracts\Events\Dispatcher; +use Illuminate\Contracts\Foundation\Application; use Illuminate\Queue\Events\JobFailed; use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\Events\JobProcessing; -use Illuminate\Contracts\Events\Dispatcher; use Illuminate\Queue\Events\JobRetryRequested; +use Illuminate\Queue\QueueManager; use Illuminate\Support\Testing\Fakes\QueueFake; -use Illuminate\Contracts\Foundation\Application; use Stancl\Tenancy\Contracts\TenancyBootstrapper; +use Stancl\Tenancy\Contracts\Tenant; class PersistentQueueTenancyBootstrapper implements TenancyBootstrapper {