| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function apply(array $settings = []): SettingsManagerContract |
||
| 11 | { |
||
| 12 | if (!$modelSettings = $this->model->modelSettings) { |
||
| 13 | $modelSettings = new ModelSettings(); |
||
| 14 | $modelSettings->model()->associate($this->model); |
||
| 15 | } |
||
| 16 | $modelSettings->settings = $settings; |
||
| 17 | $modelSettings->save(); |
||
| 18 | |||
| 19 | return $this; |
||
| 20 | } |
||
| 45 |