| Total Complexity | 4 |
| Total Lines | 59 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class RepositoryGeneratorCommand extends BaseCommand |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The console command name. |
||
| 13 | * |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $name = 'artomator:repository'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The console command description. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $description = 'Create repository command'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create a new command instance. |
||
| 27 | */ |
||
| 28 | public function __construct() |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute the command. |
||
| 37 | * |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function handle() |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Get the console command options. |
||
| 52 | * |
||
| 53 | * @return array |
||
| 54 | */ |
||
| 55 | public function getOptions() |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * Get the console command arguments. |
||
| 62 | * |
||
| 63 | * @return array |
||
| 64 | */ |
||
| 65 | protected function getArguments() |
||
| 70 |