| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Compiled extends KeyValue |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ContainerInterface |
||
| 13 | */ |
||
| 14 | private $container; |
||
| 15 | |||
| 16 | 6 | public function __construct(array $values, ContainerInterface $container) |
|
| 17 | { |
||
| 18 | 6 | parent::__construct($values); |
|
| 19 | 6 | $this->container = $container; |
|
| 20 | 6 | } |
|
| 21 | |||
| 22 | 6 | public function get($id) |
|
| 29 | } |
||
| 30 | } |
||
| 31 |