1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:34:04 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-10-10 15:39:10 +00:00
parent 05e84401b4
commit 0ba6602872

View file

@ -5,17 +5,17 @@ declare(strict_types=1);
namespace Stancl\Tenancy; namespace Stancl\Tenancy;
use Illuminate\Cache\CacheManager; use Illuminate\Cache\CacheManager;
use Illuminate\Console\Events\CommandStarting;
use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper; use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
use Stancl\Tenancy\Contracts\Domain; use Stancl\Tenancy\Contracts\Domain;
use Stancl\Tenancy\Contracts\Tenant; use Stancl\Tenancy\Contracts\Tenant;
use Stancl\Tenancy\Database\Contracts\TenantWithDatabase;
use Stancl\Tenancy\Enums\LogMode; use Stancl\Tenancy\Enums\LogMode;
use Stancl\Tenancy\Events\Contracts\TenancyEvent; use Stancl\Tenancy\Events\Contracts\TenancyEvent;
use Stancl\Tenancy\Resolvers\DomainTenantResolver; use Stancl\Tenancy\Resolvers\DomainTenantResolver;
use Illuminate\Console\Events\CommandStarting;
use Illuminate\Support\Facades\Schema;
use Stancl\Tenancy\Database\Contracts\TenantWithDatabase;
class TenancyServiceProvider extends ServiceProvider class TenancyServiceProvider extends ServiceProvider
{ {
@ -133,7 +133,7 @@ class TenancyServiceProvider extends ServiceProvider
$tenantModel = tenancy()->model(); $tenantModel = tenancy()->model();
if ($event->command === 'migrate:fresh' && Schema::hasTable($tenantModel->getTable())) { if ($event->command === 'migrate:fresh' && Schema::hasTable($tenantModel->getTable())) {
$tenantModel::all()->each(function(Tenant $tenant) { $tenantModel::all()->each(function (Tenant $tenant) {
if (method_exists($tenant, 'domains')) { if (method_exists($tenant, 'domains')) {
$tenant->domains()->delete(); $tenant->domains()->delete();
} }