| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | protected function saveRecord(Model $record, array $definition) |
||
| 53 | { |
||
| 54 | $site = Craft::$app->sites->getSiteByHandle($definition['site']); |
||
| 55 | if ($site) { |
||
| 56 | $record->siteId = $site->id; |
||
| 57 | } else { |
||
| 58 | Schematic::warning('Site '.$definition['site'].' could not be found'); |
||
| 59 | } |
||
| 60 | |||
| 61 | return Craft::$app->globals->saveSet($record); |
||
| 62 | } |
||
| 63 | |||
| 72 |