| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function handle() |
||
| 35 | { |
||
| 36 | parent::handle(); |
||
| 37 | |||
| 38 | $repositoryGenerator = new RepositoryGenerator($this->commandData); |
||
| 39 | $repositoryGenerator->generate(); |
||
| 40 | |||
| 41 | $interfaceGenerator = new InterfaceGenerator($this->commandData); |
||
| 42 | $interfaceGenerator->generate(); |
||
| 43 | |||
| 44 | $this->performPostActions(); |
||
| 45 | } |
||
| 47 |