mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 02:04:03 +00:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
/**
|
|
* @property string|null $domain
|
|
*/
|
|
interface SingleDomainTenant extends Tenant {}
|