From 4b6fa22aa7dbb9dcf97f9a6fda1575b4a10029c6 Mon Sep 17 00:00:00 2001 From: PHP CS Fixer Date: Fri, 29 Mar 2024 20:42:20 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Commands/TenantDump.php | 3 ++- src/Commands/TenantList.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Commands/TenantDump.php b/src/Commands/TenantDump.php index d3d72cfb..32677efc 100644 --- a/src/Commands/TenantDump.php +++ b/src/Commands/TenantDump.php @@ -50,7 +50,8 @@ class TenantDump extends DumpCommand if ($prune) { (new Filesystem)->deleteDirectory( - database_path('migrations/tenant'), preserve: true + database_path('migrations/tenant'), + preserve: true ); $this->components->info('Tenant migrations pruned.'); diff --git a/src/Commands/TenantList.php b/src/Commands/TenantList.php index 77a561e7..ef39fe7d 100644 --- a/src/Commands/TenantList.php +++ b/src/Commands/TenantList.php @@ -5,8 +5,8 @@ declare(strict_types=1); namespace Stancl\Tenancy\Commands; use Illuminate\Console\Command; -use Illuminate\Support\Collection; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Collection; use Stancl\Tenancy\Contracts\SingleDomainTenant; use Stancl\Tenancy\Contracts\Tenant;