1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-14 11:54: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

@ -6,7 +6,6 @@ namespace Stancl\Tenancy\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
@ -20,7 +19,7 @@ class CreateDatabase implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public function __construct(
protected TenantWithDatabase&Model $tenant,
protected TenantWithDatabase $tenant,
) {
}