JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrtake($this, $user, $guardName); } /** * Check if the current user is impersonated. * * @param void * @return bool */ public function isImpersonated() { return app(ImpersonateManager::class)->isImpersonating(); } /** * Leave the current impersonation. * * @param void * @return bool */ public function leaveImpersonation() { if ($this->isImpersonated()) { return app(ImpersonateManager::class)->leave(); } } }