You are here

public function MethodTag::setIsStatic 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::setIsStatic()

Sets a new value for whether the method is static or not.

Parameters

bool $isStatic The new value to set.:

Return value

$this

File

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

Class

MethodTag
Reflection class for a @method in a Docblock.

Namespace

phpDocumentor\Reflection\DocBlock\Tag

Code

public function setIsStatic($isStatic) {
  $this->isStatic = $isStatic;
  $this->content = null;
  return $this;
}