| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | abstract class FileGeneratorCommand extends AbstractGeneratorCommand |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Get the console command arguments. |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | protected function setArguments(): array |
||
| 28 | { |
||
| 29 | return []; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the console command options. |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | protected function setOptions() :array |
||
| 40 | } |
||
| 41 | } |
||
| 42 |