You are here

public function SeeTag::setReference in Zircon Profile 8

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

Sets the structural element this tag refers to.

Parameters

string $refers The new type this tag refers to.:

Return value

$this

File

vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Tag/SeeTag.php, line 74

Class

SeeTag
Reflection class for a @author Mike van Riel <mike.vanriel@naenius.com> @license http://www.opensource.org/licenses/mit-license.php MIT @link http://phpdoc.org

Namespace

phpDocumentor\Reflection\DocBlock\Tag

Code

public function setReference($refers) {
  $this->refers = $refers;
  $this->content = null;
  return $this;
}