Nette\Reflection\GlobalFunction::hasAnnotation PHP Method

hasAnnotation() public method

Has method specified annotation?
public hasAnnotation ( $name ) : boolean
return boolean
    public function hasAnnotation($name)
    {
        $res = AnnotationsParser::getAll($this);
        return !empty($res[$name]);
    }