mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 18:04:03 +00:00
16 lines
No EOL
254 B
PHP
16 lines
No EOL
254 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Events\Contracts;
|
|
|
|
use Stancl\Tenancy\Tenancy;
|
|
|
|
abstract class TenancyEvent
|
|
{
|
|
/** @var Tenancy */
|
|
public $tenancy;
|
|
|
|
public function __construct(Tenancy $tenancy)
|
|
{
|
|
$this->tenancy = $tenancy;
|
|
}
|
|
} |