| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class TestApplication extends BaseApplication |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var OutputInterface |
||
| 24 | */ |
||
| 25 | private $output; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var resource |
||
| 29 | */ |
||
| 30 | private $stream; |
||
|
|
|||
| 31 | |||
| 32 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
| 33 | { |
||
| 34 | $this->setAutoExit(false); |
||
| 35 | |||
| 36 | return parent::run($input, $output); |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param OutputInterface $output |
||
| 41 | */ |
||
| 42 | public function setOutput(OutputInterface $output): void |
||
| 45 | } |
||
| 46 | } |
||
| 47 |