1 | <?php |
||
10 | abstract class ManagerRegistryCachingEndpointFactory extends CachingEndpointFactory |
||
11 | { |
||
12 | /** |
||
13 | * @var ManagerRegistry |
||
14 | */ |
||
15 | protected $managerRegistry; |
||
16 | |||
17 | 1 | public function __construct(ManagerRegistry $managerRegistry, CacheItemPoolInterface $cachePool, LoggerInterface $logger) |
|
22 | |||
23 | 1 | protected function getCachingEndpoint(string $name, string $version): CachingEndpoint |
|
29 | |||
30 | protected abstract function getManagerRegistryCachingEndpoint(string $name, string $version): ManagerRegistryCachingEndpoint; |
||
31 | } |
||
32 |