| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | class FactoryVariadic implements LoaderInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $className; |
||
| 17 | /** |
||
| 18 | * @var array<string> |
||
| 19 | */ |
||
| 20 | private $dependencies; |
||
| 21 | |||
| 22 | 12 | public function __construct(string $className, string ...$dependencies) |
|
| 26 | 12 | } |
|
| 27 | |||
| 28 | 9 | public function __invoke(ContainerInterface $container) |
|
| 44 |