1 | <?php |
||
11 | class SeedCommand extends Command |
||
12 | { |
||
13 | use SeederHelper; |
||
14 | |||
15 | /** |
||
16 | * The name and signature of the console command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $signature = 'rinvex:seed:fort'; |
||
21 | |||
22 | /** |
||
23 | * The console command description. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $description = 'Seed Rinvex Fort Data.'; |
||
28 | |||
29 | /** |
||
30 | * Execute the console command. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function handle() |
||
47 | |||
48 | /** |
||
49 | * Seed default users. |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | protected function seedUsers() |
||
77 | } |
||
78 |
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.