1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 05:24:04 +00:00
tenancy/src/Contracts/Feature.php
2020-05-13 04:51:37 +02:00

13 lines
246 B
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Contracts;
use Stancl\Tenancy\Tenancy;
/** Additional features, like Telescope tags and tenant redirects. */
interface Feature
{
public function bootstrap(Tenancy $tenancy): void;
}