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