Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-01-06 13:07:26 +00:00
parent 88642f7ecd
commit 168656e3aa
235 changed files with 14818 additions and 14426 deletions

View File

@@ -16,15 +16,15 @@ class UserSeeder extends Seeder
$str = 'demopass';
$password = \Hash::make($str);
$user = User::create([
'first_name' => 'Demo',
'last_name' => 'Admin',
'email' => null,
'user_name' => 'demo_admin',
'password' => $password,
'first_name' => 'Demo',
'last_name' => 'Admin',
'email' => null,
'user_name' => 'demo_admin',
'password' => $password,
'assign_group' => 1,
'primary_dpt' => 1,
'active' => 1,
'role' => 'admin',
'primary_dpt' => 1,
'active' => 1,
'role' => 'admin',
]);
// checking if the user have been created
}