| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class BootstrapRunner implements RunnerInterface |
||
| 18 | { |
||
| 19 | 5 | public function __construct( |
|
| 20 | private ContainerInterface $container, |
||
| 21 | private array $bootstrapList = [], |
||
| 22 | ) { |
||
| 23 | 5 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @throws RuntimeException If the bootstrap callback is not callable. |
||
| 27 | */ |
||
| 28 | 5 | public function run(): void |
|
| 41 | } |
||
| 42 | } |
||
| 44 |