| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 2 |
| 1 | <?php |
||
| 14 | public function fire() |
||
| 15 | { |
||
| 16 | $name = $this->argument('name'); |
||
| 17 | |||
| 18 | $this->call('hive:instance', ['name' => $name, '-e' => 'bar', '-m' => 'bar']); |
||
| 19 | $this->call('hive:factory', ['name' => $name, '-i' => 'bar']); |
||
| 20 | $this->call('hive:repo', ['name' => $name, '-o' => 'bar']); |
||
| 21 | $this->call('hive:mutator', ['name' => $name.'Request', '-r' => 'bar']); |
||
| 22 | $this->call('hive:controller', ['name' => $name]); |
||
| 23 | } |
||
| 24 | |||
| 32 |