1 | <?php |
||
15 | abstract class ManagerRegistryCachingEndpointFactory extends CachingEndpointFactory |
||
|
|||
16 | { |
||
17 | /** |
||
18 | * @var ManagerRegistry |
||
19 | */ |
||
20 | protected $managerRegistry; |
||
21 | |||
22 | /** |
||
23 | * ManagerRegistryCachingEndpointFactory constructor. |
||
24 | * @param ManagerRegistry $managerRegistry |
||
25 | * @param CacheItemPoolInterface $cachePool |
||
26 | * @param LoggerInterface $logger |
||
27 | */ |
||
28 | 1 | public function __construct(ManagerRegistry $managerRegistry, CacheItemPoolInterface $cachePool, LoggerInterface $logger) |
|
33 | |||
34 | /** |
||
35 | * @param string $name |
||
36 | * @param string $version |
||
37 | * @return CachingEndpoint |
||
38 | */ |
||
39 | 1 | protected function getCachingEndpoint(string $name, string $version): CachingEndpoint |
|
45 | |||
46 | /** |
||
47 | * @param string $name |
||
48 | * @param string $version |
||
49 | * @return ManagerRegistryCachingEndpoint |
||
50 | */ |
||
51 | protected abstract function getManagerRegistryCachingEndpoint(string $name, string $version): ManagerRegistryCachingEndpoint; |
||
52 | } |
||
53 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.