| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public static function doesNotBelongToModel($mediaId, Model $model) |
||
| 11 | { |
||
| 12 | $modelClass = get_class($model); |
||
| 13 | |||
| 14 | return new static("Media with id `{$mediaId}` cannot be deleted because it does not exist or does not belong to model {$modelClass} with id {$model->getKey()}"); |
||
| 15 | } |
||
| 16 | } |
||
| 17 |