mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 05:24:04 +00:00
13 lines
246 B
PHP
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;
|
|
}
|