1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 00:04:04 +00:00
tenancy/src/Contracts/TenancyBootstrapper.php
2019-09-20 20:14:58 +02:00

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();
}