You are here

public function MethodTag::setArguments in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Tag/MethodTag.php \phpDocumentor\Reflection\DocBlock\Tag\MethodTag::setArguments()

Sets the arguments for this method.

Parameters

string $arguments A comma-separated arguments line.:

Return value

void

File

vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Tag/MethodTag.php, line 154

Class

MethodTag
Reflection class for a @method in a Docblock.

Namespace

phpDocumentor\Reflection\DocBlock\Tag

Code

public function setArguments($arguments) {
  $this->arguments = $arguments;
  $this->content = null;
  return $this;
}