From 0005f0eaa73d2c4a501fed6a29db4ad7e535e218 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Fri, 30 Sep 2022 09:46:55 +0200 Subject: [PATCH] Use HasTenantOptions instead of the old trait name in Up/Down commands --- src/Commands/Down.php | 4 ++-- src/Commands/Up.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Commands/Down.php b/src/Commands/Down.php index 96ed5335..5e8975c6 100644 --- a/src/Commands/Down.php +++ b/src/Commands/Down.php @@ -5,11 +5,11 @@ declare(strict_types=1); namespace Stancl\Tenancy\Commands; use Illuminate\Foundation\Console\DownCommand; -use Stancl\Tenancy\Concerns\HasATenantsOption; +use Stancl\Tenancy\Concerns\HasTenantOptions; class Down extends DownCommand { - use HasATenantsOption; + use HasTenantOptions; protected $signature = 'tenants:down {--redirect= : The path that users should be redirected to} diff --git a/src/Commands/Up.php b/src/Commands/Up.php index a3f690c2..b10b0c77 100644 --- a/src/Commands/Up.php +++ b/src/Commands/Up.php @@ -5,11 +5,11 @@ declare(strict_types=1); namespace Stancl\Tenancy\Commands; use Illuminate\Console\Command; -use Stancl\Tenancy\Concerns\HasATenantsOption; +use Stancl\Tenancy\Concerns\HasTenantOptions; class Up extends Command { - use HasATenantsOption; + use HasTenantOptions; protected $signature = 'tenants:up';