phpDocumentor\Reflection\DocBlock\Tag\MethodTag::setMethodName PHP Method

setMethodName() public method

Sets the name of this method.
public setMethodName ( string $method_name )
$method_name string The name of the method.
    public function setMethodName($method_name)
    {
        $this->method_name = $method_name;
        $this->content = null;
        return $this;
    }