Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
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 | /** @var InputInterface */ |
||
18 | private $input; |
||
19 | |||
20 | 1 | public function __construct(string $name = self::NAME, string $version = self::VERSION) |
|
24 | 1 | } |
|
25 | |||
26 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
29 | } |
||
30 | |||
31 | 1 | public function getInput(): InputInterface |
|
36 |