We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98048ea commit 87eef54Copy full SHA for 87eef54
src/Exceptions/PresenterException.php
@@ -28,10 +28,11 @@ class PresenterException extends Exception
28
*/
29
public static function interfaceNotImplemented(Model $model): self
30
{
31
- return new self((__(':model should implements :interface interface', [
+ return new self((
32
+ __(':model should implements :interface interface', [
33
'model' => get_class($model),
34
'interface' => '\Coderflex\LaravelPresenter\Concerns\CanPresent',
35
])
- ));
36
+ ));
37
}
38
0 commit comments