Irazasyed\JwtAuthGuard\JwtAuthGuard::__call PHP Метод

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

Magically call the JWT instance.
public __call ( string $method, array $parameters ) : mixed
$method string
$parameters array
Результат mixed
    public function __call($method, $parameters)
    {
        if (method_exists($this->jwt, $method)) {
            return call_user_func_array([$this->jwt, $method], $parameters);
        }
        throw new BadMethodCallException("Method [{$method}] does not exist.");
    }