mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 00:04:04 +00:00
17 lines
285 B
PHP
17 lines
285 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
use Stancl\Tenancy\Tenant;
|
|
|
|
/**
|
|
* TenancyBootstrappers are classes that make existing code tenant-aware.
|
|
*/
|
|
interface TenancyBootstrapper
|
|
{
|
|
public function start(Tenant $tenant);
|
|
|
|
public function end();
|
|
}
|