1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 03:34:04 +00:00

Delete intersection types

This commit is contained in:
lukinovec 2023-04-14 12:43:35 +02:00
parent 82fe91eba2
commit 411f454aaa
12 changed files with 21 additions and 25 deletions

View file

@ -10,8 +10,9 @@ use Stancl\Tenancy\Database\Contracts\TenantWithDatabase;
class SyncedResourceSaved
{
/** @param Syncable|Model $model */
public function __construct(
public Syncable&Model $model,
public Syncable $model,
public TenantWithDatabase|null $tenant,
) {
}