1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 07:14:04 +00:00
tenancy/src/Contracts/TenancyBootstrapper.php
2019-09-08 14:40:49 +02:00

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