11 lines
151 B
PHP
11 lines
151 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Shared\Domain\Contract;
|
|
|
|
interface TenantAwareInterface
|
|
{
|
|
public function getTenantId(): ?string;
|
|
}
|