| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 77.78% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | final class ProxyContainer implements ContainerInterface |
||
| 9 | { |
||
| 10 | private ContainerInterface $proxied; |
||
| 11 | private ProxyHandlerInterface $handler; |
||
| 12 | |||
| 13 | 1 | public function __construct(ContainerInterface $proxied, ProxyHandlerInterface $handler) |
|
| 17 | 1 | } |
|
| 18 | |||
| 19 | 1 | public function get($id) |
|
| 23 | } |
||
| 24 | |||
| 25 | public function has($id) |
||
| 30 |