You are here

private static property Tag::$tagHandlerMappings in Zircon Profile 8.0

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

handles it as an array value. The class is expected to inherit this class.

Type: array An array with a tag as a key, and an FQCN to a class that

File

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

Class

Tag
Parses a tag definition for a DocBlock.

Namespace

phpDocumentor\Reflection\DocBlock

Code

private static $tagHandlerMappings = array(
  'author' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\AuthorTag',
  'covers' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\CoversTag',
  'deprecated' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\DeprecatedTag',
  'example' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\ExampleTag',
  'link' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\LinkTag',
  'method' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\MethodTag',
  'param' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\ParamTag',
  'property-read' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\PropertyReadTag',
  'property' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\PropertyTag',
  'property-write' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\PropertyWriteTag',
  'return' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\ReturnTag',
  'see' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\SeeTag',
  'since' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\SinceTag',
  'source' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\SourceTag',
  'throw' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\ThrowsTag',
  'throws' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\ThrowsTag',
  'uses' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\UsesTag',
  'var' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\VarTag',
  'version' => '\\phpDocumentor\\Reflection\\DocBlock\\Tag\\VersionTag',
);