1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-14 03:54:03 +00:00
This commit is contained in:
Samuel Štancl 2019-09-06 18:52:04 +02:00
commit 5d2b1e3a72
5 changed files with 15 additions and 6 deletions

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Contracts;
use Stancl\Tenancy\Tenant;
@ -7,5 +9,6 @@ use Stancl\Tenancy\Tenant;
interface TenancyBootstrapper
{
public function start(Tenant $tenant); // todo better name?
public function end(Tenant $tenant); // todo arg?
}
}