| 1 | <?php |
||
| 10 | class SeedCommand extends Command |
||
| 11 | { |
||
| 12 | use SeederHelper; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The name and signature of the console command. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $signature = 'cortex:seed:console'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The console command description. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $description = 'Seed Cortex Console Data.'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Execute the console command. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function handle() |
||
| 41 | } |
||
| 42 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.