| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function __invoke(KernelInterface $kernel): void |
||
| 19 | { |
||
| 20 | $application = new Application($kernel); |
||
| 21 | $application->setAutoExit(false); |
||
| 22 | |||
| 23 | $input = new ArrayInput([ |
||
| 24 | 'command' => 'cache:clear', |
||
| 25 | ]); |
||
| 26 | |||
| 27 | $output = new NullOutput(); |
||
| 28 | $application->run($input, $output); |
||
| 29 | } |
||
| 31 |