1 | <?php |
||
12 | abstract class ContainerAwareCacheAbstract implements FactoryInterface, ContainerAwareInterface |
||
13 | { |
||
14 | /** @var ContainerInterface */ |
||
15 | protected $container; |
||
16 | |||
17 | abstract public function __invoke(array $options); |
||
18 | |||
19 | public function getContainer(): ContainerInterface |
||
23 | |||
24 | public function setContainer(ContainerInterface $container) |
||
28 | |||
29 | public function getService($serviceName) |
||
41 | } |
||
42 |