| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanedev\LaravelImpersonator\Exceptions; |
||
| 61 | 2 | public static function cannotBeImpersonated(Impersonatable $impersonated) |
|
| 62 | { |
||
| 63 | 2 | return static::make( |
|
| 64 | 2 | "The impersonated with `{$impersonated->getAuthIdentifierName()}`=[{$impersonated->getAuthIdentifier()}] cannot be impersonated." |
|
| 65 | ); |
||
| 66 | } |
||
| 67 | } |
||
| 68 |