| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function build(ContainerBuilder $container): void |
||
| 35 | { |
||
| 36 | parent::build($container); |
||
| 37 | |||
| 38 | // Ensures that AddPsyshCommandPass runs before AddConsoleCommandPass to avoid |
||
| 39 | // autoconfiguration conflicts. |
||
| 40 | $container->addCompilerPass( |
||
| 41 | new AddPsyshCommandPass(), |
||
| 42 | PassConfig::TYPE_BEFORE_OPTIMIZATION, |
||
| 43 | 10 |
||
| 44 | ); |
||
| 45 | } |
||
| 46 | } |
||
| 47 |