Passed
Push — master ( 3b9459...1d6d9a )
by Ron
11:07 queued 34s
created

ConfigSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 11
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 4 1
1
<?php
2
3
use App\Settings;
4
use Illuminate\Database\Seeder;
5
6
class ConfigSeeder extends Seeder
7
{
8
    /**
9
     * Run the database seeds.
10
     *
11
     * @return void
12
     */
13
    public function run()
14
    {
15
        Settings::create(['key' => 'app.timezone', 'value' => 'America/Los_Angeles']);
16
        Settings::create(['key' => 'user.passExpires', 'value' => '30']);
17
    }
18
}
19