| 1 | <?php declare(strict_types = 1); |
||
| 13 | final class ContainerProxy implements ContainerContract |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var MutableContainerContract |
||
| 17 | */ |
||
| 18 | private $container; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * ContainerProxy constructor. |
||
| 22 | * |
||
| 23 | * @param MutableContainerContract $container |
||
| 24 | */ |
||
| 25 | public function __construct(MutableContainerContract $container) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritDoc |
||
| 32 | */ |
||
| 33 | public function get($id, array $arguments = []) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritDoc |
||
| 40 | */ |
||
| 41 | public function has($id) |
||
| 45 | |||
| 46 | } |