| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class ContainerRegistry implements Registry |
||
| 11 | { |
||
| 12 | private $container; |
||
| 13 | |||
| 14 | public function __construct(ContainerInterface $container) |
||
| 15 | { |
||
| 16 | $this->container = $container; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function has(string $name): bool |
||
| 22 | } |
||
| 23 | |||
| 24 | public function get(string $name): FilesystemInterface |
||
| 27 | } |
||
| 28 | } |
||
| 29 |