| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public static function make(string $field, Model $model) |
||
| 11 | { |
||
| 12 | $translatableAttributes = implode(', ', $model->getTranslatableAttributes()); |
||
| 13 | |||
| 14 | return new static("Cannot translate attribute `{$field}` as it's not one of the translatable attributes: `$translatableAttributes`"); |
||
| 15 | } |
||
| 16 | } |
||
| 17 |