forked from fa/breadcrumb-the-shire
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Service\Security;
|
|
|
|
use MintyPHP\Repository\Security\RateLimitRepository;
|
|
|
|
class SecurityRepositoryFactory
|
|
{
|
|
private ?RateLimitRepository $rateLimitRepository = null;
|
|
|
|
public function createRateLimitRepository(): RateLimitRepository
|
|
{
|
|
return $this->rateLimitRepository ??= new RateLimitRepository();
|
|
}
|
|
}
|