30 lines
875 B
PHP
30 lines
875 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Service\Tenant;
|
|
|
|
use MintyPHP\Repository\Org\DepartmentRepository;
|
|
use MintyPHP\Repository\Tenant\TenantRepository;
|
|
use MintyPHP\Repository\Tenant\UserTenantRepository;
|
|
|
|
class TenantRepositoryFactory
|
|
{
|
|
private ?TenantRepository $tenantRepository = null;
|
|
private ?DepartmentRepository $departmentRepository = null;
|
|
private ?UserTenantRepository $userTenantRepository = null;
|
|
|
|
public function createTenantRepository(): TenantRepository
|
|
{
|
|
return $this->tenantRepository ??= new TenantRepository();
|
|
}
|
|
|
|
public function createDepartmentRepository(): DepartmentRepository
|
|
{
|
|
return $this->departmentRepository ??= new DepartmentRepository();
|
|
}
|
|
|
|
public function createUserTenantRepository(): UserTenantRepository
|
|
{
|
|
return $this->userTenantRepository ??= new UserTenantRepository();
|
|
}
|
|
}
|