1 | <?php |
||
19 | class TenantProvider implements TenantProviderInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var TenantRepositoryInterface |
||
23 | */ |
||
24 | private $tenantRepository; |
||
25 | |||
26 | /** |
||
27 | * Construct. |
||
28 | * |
||
29 | * @param TenantRepositoryInterface $tenantRepository Tenant repository |
||
30 | */ |
||
31 | public function __construct(TenantRepositoryInterface $tenantRepository) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getAvailableTenants() |
||
44 | } |
||
45 |