Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
10 | function use_contentful_preview(bool $state = true) |
||
11 | { |
||
12 | if (! empty($state)) { |
||
13 | config([ |
||
14 | 'database.default' => 'mysql_preview', |
||
15 | 'contentful.use_preview' => 1, |
||
16 | ]); |
||
17 | } else { |
||
18 | config([ |
||
19 | 'database.default' => 'mysql', |
||
20 | 'contentful.use_preview' => 0, |
||
21 | ]); |
||
22 | } |
||
23 | } |
||
24 | } |
||
25 |