Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
28 | public function save(SettingsModel $settingsModel) |
||
29 | { |
||
30 | // Save plugin settings |
||
31 | if (Craft::$app->getPlugins()->savePluginSettings( |
||
32 | Patron::getInstance(), |
||
33 | $settingsModel->toArray() |
||
34 | )) { |
||
35 | // Alter table |
||
36 | return $this->alterEnvironmentsColumn(); |
||
37 | } |
||
38 | |||
39 | return false; |
||
40 | } |
||
41 | |||
57 |