| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | final class IO extends SymfonyStyle |
||
| 24 | { |
||
| 25 | private $input; |
||
| 26 | private $output; |
||
| 27 | |||
| 28 | public static function createNull(): self |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function __construct(InputInterface $input, OutputInterface $output) |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getInput(): InputInterface |
||
| 45 | { |
||
| 46 | return $this->input; |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getOutput(): OutputInterface |
||
| 52 | } |
||
| 53 | } |
||
| 54 |