Total Complexity | 6 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Seed extends BaseCommand |
||
6 | { |
||
7 | protected $signature = 'chief:seed |
||
8 | {seeder=DatabaseSeeder : the classname of the seeder. } |
||
9 | {--force}'; |
||
10 | protected $description = 'This will run the seeders to inject new data into your project database.'; |
||
11 | |||
12 | /** |
||
13 | * @return void |
||
14 | */ |
||
15 | public function handle() |
||
35 |