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:fort'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Seed Cortex Fort Data.'; |
||
27 | |||
28 | /** |
||
29 | * Execute the console command. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function handle(): void |
||
46 | |||
47 | /** |
||
48 | * Seed default users. |
||
49 | * |
||
50 | * @return void |
||
51 | */ |
||
52 | protected function seedUsers(): void |
||
76 | } |
||
77 |
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.