Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function run() |
||
14 | { |
||
15 | Setting::create(['name' => 'home', 'value' => '']); |
||
16 | Setting::create(['name' => 'domain', 'value' => 'test']); |
||
17 | Setting::create(['name' => 'use_mysql', 'value' => 'on']); |
||
18 | Setting::create(['name' => 'use_redis', 'value' => 'on']); |
||
19 | Setting::create(['name' => 'use_browser', 'value' => 'on']); |
||
20 | Setting::create(['name' => 'host_machine_name', 'value' => 'host.docker.internal']); |
||
21 | } |
||
23 |