Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
45 | { |
||
46 | $output->writeln('<comment>Generating</comment>'); |
||
47 | |||
48 | $generator = new Generator(); |
||
49 | $generator->generateAndSave(); |
||
50 | |||
51 | $out = \dirname(__DIR__) . '/Parser/Factory.php'; |
||
52 | |||
53 | $output->writeln('<info>Successfully generated in ' . $out . '</info>'); |
||
54 | |||
55 | return 0; |
||
56 | } |
||
58 |