| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class MakeDocumentResource extends GeneratorCommand |
||
| 8 | { |
||
| 9 | protected $signature = 'document:resource {name}'; |
||
| 10 | protected $description = 'Command description'; |
||
| 11 | |||
| 12 | protected $type = 'Document Resource'; |
||
| 13 | |||
| 14 | protected function getStub() |
||
| 15 | { |
||
| 16 | return __DIR__.'/../../stubs/DocumentResource.stub'; |
||
| 17 | } |
||
| 18 | |||
| 19 | protected function getDefaultNamespace($rootNamespace) |
||
| 22 | } |
||
| 23 | } |
||
| 24 |