| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 7 | class CoreDefinitionLoader implements DefinitionLoader |
||
| 8 | { |
||
| 9 | const DEFAULT_DEFINITION_FILE = __DIR__ . '/../config/services.php'; |
||
| 10 | |||
| 11 | /** @var \SplFileInfo */ |
||
| 12 | private $coreDefinitionsFile; |
||
| 13 | |||
| 14 | public function __construct(\SplFileInfo $coreDefinitionsFile = null) |
||
| 22 | } |
||
| 23 | |||
| 24 | public function load(ContainerBuilder $containerBuilder): void |
||
| 29 |