mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 17:24:04 +00:00
Interfaces -> Contracts
This commit is contained in:
parent
e4f27e7396
commit
89bf90f595
4 changed files with 81 additions and 0 deletions
11
src/Contracts/TenancyBootstrapper.php
Normal file
11
src/Contracts/TenancyBootstrapper.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace Stancl\Tenancy\Contracts;
|
||||
|
||||
use Stancl\Tenancy\Tenant;
|
||||
|
||||
interface TenancyBootstrapper
|
||||
{
|
||||
public function start(Tenant $tenant); // todo better name?
|
||||
public function end(Tenant $tenant); // todo arg?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue