1 | <?php |
||
10 | abstract class AbstractContainerDecorator implements ContainerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ContainerInterface The decorated container |
||
14 | */ |
||
15 | protected $container; |
||
16 | |||
17 | /** |
||
18 | * @param ContainerInterface $container The container being decorated |
||
19 | */ |
||
20 | 1 | public function __construct(ContainerInterface $container) |
|
24 | |||
25 | 1 | public function get($name) |
|
29 | |||
30 | 1 | public function has($name) |
|
34 | } |
||
35 |