App\Exceptions\OAuthExceptionHandler::handle PHP Метод

handle() публичный Метод

public handle ( League\OAuth2\Server\Exception\OAuthException $e ) : mixed
$e League\OAuth2\Server\Exception\OAuthException
Результат mixed
    public function handle(OAuthException $e)
    {
        if (method_exists($this, camel_case($e->errorType))) {
            return $this->{camel_case($e->errorType)}($e);
        }
    }