We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -7,50 +7,50 @@ |
||
7 | 7 | |
8 | 8 | class SettingsTableSeeder extends Seeder |
9 | 9 | { |
10 | - /** |
|
11 | - * Run the database seeds. |
|
12 | - * |
|
13 | - * @return void |
|
14 | - */ |
|
15 | - public function run() |
|
16 | - { |
|
17 | - DB::table('settings')->insert([ |
|
18 | - 'key' => 'contact_email', |
|
19 | - 'name' => 'Contact form email address', |
|
20 | - 'description' => 'The email address that all emails from the contact form will go to.', |
|
21 | - 'value' => '[email protected]', |
|
22 | - 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
23 | - 'active' => 1, |
|
24 | - ]); |
|
25 | - |
|
26 | - DB::table('settings')->insert([ |
|
27 | - 'key' => 'contact_cc', |
|
28 | - 'name' => 'Contact form CC field', |
|
29 | - 'description' => 'Email adresses separated by comma, to be included as CC in the email sent by the contact form.', |
|
30 | - 'value' => '', |
|
31 | - 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
32 | - 'active' => 1, |
|
33 | - |
|
34 | - ]); |
|
35 | - |
|
36 | - DB::table('settings')->insert([ |
|
37 | - 'key' => 'contact_bcc', |
|
38 | - 'name' => 'Contact form BCC field', |
|
39 | - 'description' => 'Email adresses separated by comma, to be included as BCC in the email sent by the contact form.', |
|
40 | - 'value' => '', |
|
41 | - 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
42 | - 'active' => 1, |
|
43 | - |
|
44 | - ]); |
|
45 | - |
|
46 | - DB::table('settings')->insert([ |
|
47 | - 'key' => 'motto', |
|
48 | - 'name' => 'Motto', |
|
49 | - 'description' => 'Website motto', |
|
50 | - 'value' => 'this is the value', |
|
51 | - 'field' => '{"name":"value","label":"Value", "title":"Motto value" ,"type":"textarea"}', |
|
52 | - 'active' => 1, |
|
53 | - |
|
54 | - ]); |
|
55 | - } |
|
10 | + /** |
|
11 | + * Run the database seeds. |
|
12 | + * |
|
13 | + * @return void |
|
14 | + */ |
|
15 | + public function run() |
|
16 | + { |
|
17 | + DB::table('settings')->insert([ |
|
18 | + 'key' => 'contact_email', |
|
19 | + 'name' => 'Contact form email address', |
|
20 | + 'description' => 'The email address that all emails from the contact form will go to.', |
|
21 | + 'value' => '[email protected]', |
|
22 | + 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
23 | + 'active' => 1, |
|
24 | + ]); |
|
25 | + |
|
26 | + DB::table('settings')->insert([ |
|
27 | + 'key' => 'contact_cc', |
|
28 | + 'name' => 'Contact form CC field', |
|
29 | + 'description' => 'Email adresses separated by comma, to be included as CC in the email sent by the contact form.', |
|
30 | + 'value' => '', |
|
31 | + 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
32 | + 'active' => 1, |
|
33 | + |
|
34 | + ]); |
|
35 | + |
|
36 | + DB::table('settings')->insert([ |
|
37 | + 'key' => 'contact_bcc', |
|
38 | + 'name' => 'Contact form BCC field', |
|
39 | + 'description' => 'Email adresses separated by comma, to be included as BCC in the email sent by the contact form.', |
|
40 | + 'value' => '', |
|
41 | + 'field' => '{"name":"value","label":"Value","type":"email"}', |
|
42 | + 'active' => 1, |
|
43 | + |
|
44 | + ]); |
|
45 | + |
|
46 | + DB::table('settings')->insert([ |
|
47 | + 'key' => 'motto', |
|
48 | + 'name' => 'Motto', |
|
49 | + 'description' => 'Website motto', |
|
50 | + 'value' => 'this is the value', |
|
51 | + 'field' => '{"name":"value","label":"Value", "title":"Motto value" ,"type":"textarea"}', |
|
52 | + 'active' => 1, |
|
53 | + |
|
54 | + ]); |
|
55 | + } |
|
56 | 56 | } |