Drahak\Restful\Application\Routes\ResourceRoute::getMethod PHP Метод

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

Get request method flag
public getMethod ( Nette\Http\IRequest $httpRequest ) : string | null
$httpRequest Nette\Http\IRequest
Результат string | null
    public function getMethod(Http\IRequest $httpRequest)
    {
        $method = $httpRequest->getMethod();
        if (!isset($this->methodDictionary[$method])) {
            return NULL;
        }
        return $this->methodDictionary[$method];
    }