| Total Complexity | 5 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class Application extends AbstractApplication |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Application constructor. |
||
| 23 | * |
||
| 24 | * @param ContainerInterface $container A container to manage dependencies. |
||
| 25 | */ |
||
| 26 | public function __construct(ContainerInterface $container) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function doRun(InputInterface $input, OutputInterface $output) |
||
| 53 |
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.