1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 22:24:03 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-09-29 21:53:17 +00:00
parent 3e78bd935e
commit f614a02860
2 changed files with 2 additions and 2 deletions

View file

@ -13,5 +13,6 @@ class SyncedResourceSaved
public function __construct( public function __construct(
public Syncable&Model $model, public Syncable&Model $model,
public TenantWithDatabase|null $tenant, public TenantWithDatabase|null $tenant,
) {} ) {
}
} }

View file

@ -10,7 +10,6 @@ use Illuminate\Support\Arr;
use Stancl\Tenancy\Contracts\Syncable; use Stancl\Tenancy\Contracts\Syncable;
use Stancl\Tenancy\Contracts\SyncMaster; use Stancl\Tenancy\Contracts\SyncMaster;
use Stancl\Tenancy\Contracts\Tenant; use Stancl\Tenancy\Contracts\Tenant;
use Stancl\Tenancy\Database\Contracts\TenantWithDatabase;
use Stancl\Tenancy\Database\TenantCollection; use Stancl\Tenancy\Database\TenantCollection;
use Stancl\Tenancy\Events\SyncedResourceChangedInForeignDatabase; use Stancl\Tenancy\Events\SyncedResourceChangedInForeignDatabase;
use Stancl\Tenancy\Events\SyncedResourceSaved; use Stancl\Tenancy\Events\SyncedResourceSaved;