Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function handle() |
||
30 | { |
||
31 | $this->call('make:adminUserSeeder'); |
||
32 | $this->call('db:seed',[ |
||
33 | '--class' => basename(config('AdminUserSeeder','AdminUserSeeder.php'), ".php") |
||
34 | ]); |
||
35 | $this->info('User ' . $this->username() . '(' . $this->email() . ') ' . |
||
36 | $this->passwordInfo() . ' created succesfully!'); |
||
37 | } |
||
38 | |||
48 |