Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
45 | 1 | public function import(array $generalSettings, array $settings = []): array |
|
46 | { |
||
47 | 1 | if (array_key_exists('settings', $generalSettings)) { |
|
48 | 1 | Schematic::info('- Saving general settings'); |
|
49 | |||
50 | 1 | $record = new Info($generalSettings['settings']); |
|
51 | |||
52 | 1 | if (!Craft::$app->saveInfo($record)) { |
|
53 | 1 | Schematic::warning('- Couldn’t save general settings.'); |
|
54 | } |
||
55 | } |
||
56 | |||
57 | 1 | return []; |
|
58 | } |
||
59 | } |
||
60 |