| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function show() { |
||
| 10 | $input = $this->io->getInput(); |
||
| 11 | $package = $input->getOption('package'); |
||
| 12 | if (empty($package)) { |
||
| 13 | $package = $this->getService()->getPackageService()->getPackage()->getFullName(); |
||
| 14 | } |
||
| 15 | $package = $this->askQuestion(new Question('Models from which package', $package)); |
||
| 16 | |||
| 17 | $input->setOption('package', $package); |
||
| 18 | } |
||
| 19 | } |