| 1 | <?php |
||
| 13 | class ZendDiContainerAdapter implements AcclimateContainerInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var LocatorInterface A Zend DIC/ServiceLocator |
||
| 17 | */ |
||
| 18 | private $container; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param LocatorInterface $container A Zend DIC/ServiceLocator |
||
| 22 | */ |
||
| 23 | 3 | public function __construct(LocatorInterface $container) |
|
| 27 | |||
| 28 | 3 | public function get($id) |
|
| 42 | |||
| 43 | 2 | public function has($id) |
|
| 47 | } |
||
| 48 |