1 | <?php |
||
13 | class PimpleContainerAdapter implements AcclimateContainerInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var Pimple A Pimple Container |
||
17 | */ |
||
18 | private $container; |
||
19 | |||
20 | /** |
||
21 | * @param Pimple $container A Pimple Container |
||
22 | */ |
||
23 | 3 | public function __construct(Pimple $container) |
|
27 | |||
28 | 3 | public function get($id) |
|
38 | |||
39 | 2 | public function has($id) |
|
43 | } |
||
44 |