PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Contracts
/
Editing: TenancyBootstrapper.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(); }
SAVE
CANCEL