Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
23 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
24 | $args = [ |
||
25 | '--package' => $input->getOption('package') |
||
26 | ]; |
||
27 | |||
28 | $this->runCommand('generate:ember:model', $args); |
||
29 | $this->runCommand('generate:ember:abilities', $args); |
||
30 | $this->runCommand('generate:ember:serializer', $args); |
||
31 | } |
||
32 | |||
33 | } |