mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 02:04:03 +00:00
15 lines
293 B
PHP
15 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
/**
|
|
* TenancyBootstrappers are classes that make your application tenant-aware automatically.
|
|
*/
|
|
interface TenancyBootstrapper
|
|
{
|
|
public function bootstrap(Tenant $tenant): void;
|
|
|
|
public function revert(): void;
|
|
}
|