| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 75% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | final class Console extends Application |
||
| 13 | { |
||
| 14 | public const NAME = 'AntiDot Framework Console Tool'; |
||
| 15 | public const VERSION = '1.0.0'; |
||
| 16 | |||
| 17 | private InputInterface $input; |
||
| 18 | |||
| 19 | 2 | public function __construct(string $name = self::NAME, string $version = self::VERSION) |
|
| 23 | 2 | } |
|
| 24 | |||
| 25 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function getInput(): InputInterface |
|
| 35 |