Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
10 | public static function attributeIsNotTranslatable(string $fieldName, Translatable $model) |
||
11 | { |
||
12 | $translatableFieldNames = implode(', ', $model->getTranslatableAttributes()); |
||
13 | |||
14 | return new static("Cannot translated field `{$fieldName}` as it does not one of the translatable fieldnames: `$translatableFieldNames`"); |
||
15 | } |
||
16 | } |
||
17 |