1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-06 10:14:04 +00:00
tenancy/src/Contracts/TenancyBootstrapper.php
2020-05-13 04:51:37 +02:00

15 lines
281 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);
public function revert();
}