| 1 | <?php |
||
| 14 | class PHPDIContainerAdapter implements AcclimateContainerInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var PhpDiContainerInterface A PHP-DI Container |
||
| 18 | */ |
||
| 19 | private $container; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param PhpDiContainerInterface $container A PHP-DI Container |
||
| 23 | */ |
||
| 24 | 3 | public function __construct(PhpDiContainerInterface $container) |
|
| 28 | |||
| 29 | 3 | public function get($id) |
|
| 39 | |||
| 40 | 2 | public function has($id) |
|
| 49 | } |
||
| 50 |