D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
3023067
/
cwd
/
www
/
vendor
/
stancl
/
tenancy
/
src
/
Events
/
Contracts
/
Filename :
TenantEvent.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Events\Contracts; use Illuminate\Queue\SerializesModels; use Stancl\Tenancy\Contracts\Tenant; abstract class TenantEvent { use SerializesModels; /** @var Tenant */ public $tenant; public function __construct(Tenant $tenant) { $this->tenant = $tenant; } }