1 | <?php |
||
12 | abstract class Resolver implements ResolverInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ContainerInterface |
||
16 | */ |
||
17 | private $container; |
||
18 | |||
19 | /** |
||
20 | * Resolver constructor. |
||
21 | * |
||
22 | * @param ContainerInterface $container |
||
23 | */ |
||
24 | 6 | public function __construct(ContainerInterface $container) |
|
28 | |||
29 | /** |
||
30 | * @return ContainerInterface |
||
31 | */ |
||
32 | 5 | protected function getContainer(): ContainerInterface |
|
36 | } |
||
37 |