H5pUserSeeder::run()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 4
nc 1
nop 0
dl 0
loc 6
c 1
b 1
f 0
cc 1
rs 10
1
<?php
2
3
use Illuminate\Database\Seeder;
4
5
class H5pUserSeeder extends Seeder
6
{
7
    /**
8
     * Run the database seeds.
9
     *
10
     * @return void
11
     */
12
    public function run()
13
    {
14
        DB::table('users')->insert([
15
            'name'     => 'H5P Creator',
16
            'email'    => '[email protected]',
17
            'password' => bcrypt('5447809'),
18
        ]);
19
    }
20
}
21