| Conditions | 4 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | protected function getStub() |
||
| 20 | { |
||
| 21 | if ($this->option('parent')) { |
||
| 22 | return __DIR__.'/../../../resources/stubs/controller.nested.stub'; |
||
| 23 | } elseif ($this->option('model')) { |
||
| 24 | return __DIR__.'/../../../resources/stubs/controller.model.stub'; |
||
| 25 | } elseif ($this->option('resource')) { |
||
| 26 | return __DIR__.'/../../../resources/stubs/controller.stub'; |
||
| 27 | } |
||
| 28 | |||
| 29 | return __DIR__.'/../../../resources/stubs/controller.plain.stub'; |
||
| 30 | } |
||
| 31 | } |
||
| 32 |