| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function handle() |
||
| 40 | { |
||
| 41 | parent::handle(); |
||
| 42 | |||
| 43 | if ($this->checkIsThereAnyDataToGenerate()) { |
||
| 44 | $this->generateCommonItems(); |
||
| 45 | |||
| 46 | $this->generateScaffoldItems(); |
||
| 47 | |||
| 48 | $this->performPostActionsWithMigration(); |
||
| 49 | } else { |
||
| 50 | $this->commandData->commandInfo('There are not enough input fields for scaffold generation.'); |
||
| 51 | } |
||
| 86 |