mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 12:44:02 +00:00
15 lines
212 B
PHP
15 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
/**
|
|
* @property-read Tenant $tenant
|
|
*
|
|
* @see \Stancl\Tenancy\Database\Models\Domain
|
|
*/
|
|
interface Domain
|
|
{
|
|
public function tenant();
|
|
}
|