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;