Conditions | 5 |
Paths | 5 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 12.4085 |
Changes | 0 |
1 | <?php |
||
17 | function settings($key = null) |
||
18 | { |
||
19 | 1 | if (is_null($key)) { |
|
20 | return app('system_setting'); |
||
21 | } |
||
22 | |||
23 | 1 | if (app()->runningInConsole()) { |
|
24 | 1 | return ''; |
|
25 | } |
||
26 | |||
27 | if (is_string($key)) { |
||
28 | return app('system_setting')->getSetting($key); |
||
29 | } |
||
30 | |||
31 | if (is_array($key)) { |
||
32 | return app('system_setting')->setSetting($key); |
||
33 | } |
||
34 | |||
35 | return ''; |
||
36 | } |
||
37 | } |
||
38 |