Dingo\Blueprint\Resource::getMethod PHP Method

getMethod() public method

Get the resource method.
public getMethod ( ) : string | null
return string | null
    public function getMethod()
    {
        if (($annotation = $this->getAnnotationByType('Resource')) && isset($annotation->method)) {
            return $annotation->method;
        }
    }