1 | <?php |
||
12 | class Container extends AdapterAbstract implements ContainerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ContainerInterface |
||
16 | */ |
||
17 | protected $container; |
||
18 | |||
19 | /** |
||
20 | * Creates a new {@link \Fabfuel\Prophiler\Adapter\Interop\Container\Container}. |
||
21 | * |
||
22 | * @param ContainerInterface $container |
||
23 | * @param ProfilerInterface $profiler |
||
24 | */ |
||
25 | 3 | public function __construct(ContainerInterface $container, ProfilerInterface $profiler) |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 2 | public function get($id) |
|
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | 1 | public function has($id) |
|
72 | } |
||
73 |