1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2024-03-29 20:42:20 +00:00
parent f8512886a0
commit 4b6fa22aa7
2 changed files with 3 additions and 2 deletions

View file

@ -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.');

View file

@ -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;