| 1 | <?php declare(strict_types=1); |
||
| 8 | class Impersonated |
||
| 9 | { |
||
| 10 | use SerializesModels; |
||
| 11 | |||
| 12 | /** @var Authenticatable */ |
||
| 13 | protected $realUser; |
||
| 14 | |||
| 15 | /** @var Authenticatable */ |
||
| 16 | protected $impersonationUser; |
||
| 17 | |||
| 18 | 2 | public function __construct(Authenticatable $realUser, Authenticatable $impersonationUser) |
|
| 23 | |||
| 24 | 2 | public function getRealUser(): Authenticatable |
|
| 28 | |||
| 29 | 2 | public function getImpersonationUser(): Authenticatable |
|
| 33 | } |
||
| 34 |