mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 07:14:04 +00:00
13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
use Stancl\Tenancy\Tenant;
|
|
|
|
interface TenancyBootstrapper
|
|
{
|
|
public function start(Tenant $tenant);
|
|
public function end();
|
|
}
|