You are here

public function DocBlock::getTags in Zircon Profile 8

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

Returns the tags for this DocBlock.

Return value

Tag[]

2 calls to DocBlock::getTags()
DocBlock::getTagsByName in vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock.php
Returns an array of tags matching the given name. If no tags are found an empty array is returned.
DocBlock::hasTag in vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock.php
Checks if a tag of a certain type is present in this DocBlock.

File

vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock.php, line 368

Class

DocBlock
Parses the DocBlock for any structure.

Namespace

phpDocumentor\Reflection

Code

public function getTags() {
  return $this->tags;
}