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

setArguments() public method

Sets the arguments for this method.
public setArguments ( string $arguments ) : void
$arguments string A comma-separated arguments line.
return void
    public function setArguments($arguments)
    {
        $this->arguments = $arguments;
        $this->content = null;
        return $this;
    }