Class yii\apidoc\models\TypeDoc
| Inheritance | yii\apidoc\models\TypeDoc » yii\apidoc\models\BaseDoc » yii\base\BaseObject |
|---|---|
| Subclasses | yii\apidoc\models\ClassDoc, yii\apidoc\models\InterfaceDoc, yii\apidoc\models\TraitDoc |
| Available since extension's version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2-apidoc/blob/master/models/TypeDoc.php |
Base class for API documentation information for classes, interfaces and traits.
Public Properties
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\apidoc\models\TypeDoc | |
| findSubject() | Finds subject (method or property) by name | yii\apidoc\models\TypeDoc |
| getFirstTag() | Get the first tag of a given name | yii\apidoc\models\BaseDoc |
| getNativeMethods() | yii\apidoc\models\TypeDoc | |
| getNativeProperties() | yii\apidoc\models\TypeDoc | |
| getPackageName() | Returns the Composer package for this type, if it can be determined from $sourceFile. | yii\apidoc\models\BaseDoc |
| getProtectedMethods() | yii\apidoc\models\TypeDoc | |
| getProtectedProperties() | yii\apidoc\models\TypeDoc | |
| getPublicMethods() | yii\apidoc\models\TypeDoc | |
| getPublicProperties() | yii\apidoc\models\TypeDoc | |
| hasTag() | Checks if doc has tag of a given name | yii\apidoc\models\BaseDoc |
| removeTag() | Removes tag of a given name | yii\apidoc\models\BaseDoc |
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| initProperties() | yii\apidoc\models\TypeDoc | |
| isInheritdocTag() | yii\apidoc\models\BaseDoc |
Constants
| Constant | Value | Description | Defined By |
|---|---|---|---|
| INHERITDOC_TAG_NAME | 'inheritdoc' | yii\apidoc\models\BaseDoc | |
| PHPSTAN_IMPORT_TYPE_ANNOTATION_NAME | 'phpstan-import-type' | yii\apidoc\models\BaseDoc | |
| PHPSTAN_TYPE_ANNOTATION_NAME | 'phpstan-type' | yii\apidoc\models\BaseDoc | |
| PSALM_IMPORT_TYPE_ANNOTATION_NAME | 'psalm-import-type' | yii\apidoc\models\BaseDoc | |
| PSALM_TYPE_ANNOTATION_NAME | 'psalm-type' | yii\apidoc\models\BaseDoc | |
| TODO_TAG_NAME | 'todo' | yii\apidoc\models\BaseDoc |
Property Details
Method Details
| public mixed __construct ( \phpDocumentor\Reflection\Php\Class_|\phpDocumentor\Reflection\Php\Trait_|\phpDocumentor\Reflection\Php\Interface_|null $reflector = null, yii\apidoc\models\Context|null $context = null, array $config = [] ) | ||
| $reflector | \phpDocumentor\Reflection\Php\Class_|\phpDocumentor\Reflection\Php\Trait_|\phpDocumentor\Reflection\Php\Interface_|null | |
| $context | yii\apidoc\models\Context|null | |
| $config | array | |
public function __construct($reflector = null, $context = null, $config = [])
{
parent::__construct(null, $reflector, $context, $config);
$this->namespace = trim(StringHelper::dirname($this->name), '\\');
if ($reflector === null) {
return;
}
foreach ($this->tags as $i => $tag) {
if ($tag instanceof Author) {
$this->authors[$tag->getAuthorName()] = $tag->getEmail();
unset($this->tags[$i]);
}
if ($tag instanceof Property || $tag instanceof PropertyRead || $tag instanceof PropertyWrite) {
$descriptions = TextHelper::getDescriptionsByFullDescription((string) $tag->getDescription());
$name = '$' . $tag->getVariableName();
$property = new PropertyDoc($this, null, $context, [
'sourceFile' => $this->sourceFile,
'name' => $name,
'fullName' => ltrim((string) $reflector->getFqsen(), '\\') . '::' . $name,
'isStatic' => false,
'visibility' => 'public',
'definedBy' => $this->name,
'type' => $tag->getType(),
'shortDescription' => $descriptions['short'],
'description' => $descriptions['detailed'],
]);
$this->properties[$property->name] = $property;
}
if ($tag instanceof Method) {
$descriptions = TextHelper::getDescriptionsByFullDescription((string) $tag->getDescription());
$method = new MethodDoc($this, null, $context, [
'sourceFile' => $this->sourceFile,
'name' => $tag->getMethodName(),
'fullName' => ltrim((string) $reflector->getFqsen(), '\\') . '::' . $tag->getMethodName(),
'shortDescription' => $descriptions['short'],
'description' => $descriptions['detailed'],
'visibility' => 'public',
'params' => [],
'isStatic' => $tag->isStatic(),
'return' => ' ',
'returnType' => $tag->getReturnType(),
]);
foreach ($tag->getParameters() as $parameter) {
$method->params[] = new ParamDoc($method, null, $context, [
'sourceFile' => $this->sourceFile,
'name' => $parameter->getName(),
'type' => $parameter->getType(),
]);
}
$method->definedBy = $this->name;
$this->methods[$method->name] = $method;
}
}
$this->initProperties($reflector, $context);
foreach ($reflector->getMethods() as $methodReflector) {
if ($methodReflector->getDocBlock() && $methodReflector->getDocBlock()->hasTag('internal')) {
continue;
}
if ((string) $methodReflector->getVisibility() !== 'private') {
$method = new MethodDoc($this, $methodReflector, $context, ['sourceFile' => $this->sourceFile]);
$method->definedBy = $this->name;
$this->methods[$method->name] = $method;
}
}
foreach ($reflector->getConstants() as $constantReflector) {
$docBlock = $constantReflector->getDocBlock();
if ($docBlock !== null && count($docBlock->getTagsByName('event')) > 0) {
$event = new EventDoc($this, $constantReflector, null, [], $docBlock);
$event->definedBy = $this->name;
$this->events[$event->name] = $event;
} else {
$constant = new ConstDoc($this, $constantReflector);
$constant->definedBy = $this->name;
$this->constants[$constant->name] = $constant;
}
}
}
Finds subject (method or property) by name
If there is a property with the same as a method, the method will be returned if the name is not stated
explicitly by prefixing with $.
Example for method attributes() and property $attributes which both may exist:
$subjectName = '$attributes'finds a property or nothing.$subjectName = 'attributes()'finds a method or nothing.$subjectName = 'attributes'finds the method if it exists, if not it will find the property.
| public yii\apidoc\models\BaseDoc|null findSubject ( mixed $subjectName ) | ||
| $subjectName | mixed | |
public function findSubject($subjectName)
{
if (empty($subjectName)) {
return null;
}
$subjectName = ltrim(str_replace($this->namespace, '', $subjectName), '\\');
if ($subjectName[0] !== '$') {
foreach ($this->methods as $name => $method) {
if (rtrim($subjectName, '()') == $name) {
return $method;
}
}
}
if (str_ends_with($subjectName, '()')) {
return null;
}
if ($this->properties === null) {
return null;
}
foreach ($this->properties as $name => $property) {
if (ltrim($subjectName, '$') == ltrim((string) $name, '$')) {
return $property;
}
}
return null;
}
Defined in: yii\apidoc\models\BaseDoc::getFirstTag()
Get the first tag of a given name
| public \phpDocumentor\Reflection\DocBlock\Tag|null getFirstTag ( string $name ) | ||
| $name | string |
Tag name. |
| return | \phpDocumentor\Reflection\DocBlock\Tag|null |
Tag instance, |
|---|---|---|
public function getFirstTag($name)
{
foreach ($this->tags as $i => $tag) {
if (strtolower($tag->getName()) == $name) {
return $this->tags[$i];
}
}
return null;
}
| public yii\apidoc\models\MethodDoc[] getNativeMethods ( ) |
public function getNativeMethods()
{
return $this->getFilteredMethods(null, $this->name);
}
| public yii\apidoc\models\PropertyDoc[] getNativeProperties ( ) |
public function getNativeProperties()
{
return $this->getFilteredProperties(null, $this->name);
}
Defined in: yii\apidoc\models\BaseDoc::getPackageName()
Returns the Composer package for this type, if it can be determined from $sourceFile.
| public string|null getPackageName ( ) |
public function getPackageName()
{
if (!$this->sourceFile || !preg_match('/\/vendor\/([\w\-]+\/[\w\-]+)/', $this->sourceFile, $match)) {
return null;
}
return $match[1];
}
| public yii\apidoc\models\MethodDoc[] getProtectedMethods ( ) |
public function getProtectedMethods()
{
return $this->getFilteredMethods('protected');
}
| public yii\apidoc\models\PropertyDoc[] getProtectedProperties ( ) |
public function getProtectedProperties()
{
return $this->getFilteredProperties('protected');
}
| public yii\apidoc\models\MethodDoc[] getPublicMethods ( ) |
public function getPublicMethods()
{
return $this->getFilteredMethods('public');
}
| public yii\apidoc\models\PropertyDoc[] getPublicProperties ( ) |
public function getPublicProperties()
{
return $this->getFilteredProperties('public');
}
Defined in: yii\apidoc\models\BaseDoc::hasTag()
Checks if doc has tag of a given name
| public boolean hasTag ( string $name ) | ||
| $name | string |
Tag name |
| return | boolean |
If doc has tag of a given name |
|---|---|---|
public function hasTag($name)
{
foreach ($this->tags as $tag) {
if (strtolower($tag->getName()) == $name) {
return true;
}
}
return false;
}
| protected mixed initProperties ( \phpDocumentor\Reflection\Php\Class_ $reflector, yii\apidoc\models\Context $context ) | ||
| $reflector | \phpDocumentor\Reflection\Php\Class_ | |
| $context | yii\apidoc\models\Context | |
protected function initProperties($reflector, $context)
{
foreach ($reflector->getProperties() as $propertyReflector) {
if ($propertyReflector->getDocBlock() && $propertyReflector->getDocBlock()->hasTag('internal')) {
continue;
}
if ((string) $propertyReflector->getVisibility() !== 'private') {
$property = new PropertyDoc($this, $propertyReflector, $context, ['sourceFile' => $this->sourceFile]);
$property->definedBy = $this->name;
$this->properties[$property->name] = $property;
}
}
}
Defined in: yii\apidoc\models\BaseDoc::isInheritdocTag()
| protected boolean isInheritdocTag ( \phpDocumentor\Reflection\DocBlock\Tag $tag ) | ||
| $tag | \phpDocumentor\Reflection\DocBlock\Tag | |
protected function isInheritdocTag(Tag $tag): bool
{
return $tag instanceof Generic && $tag->getName() === self::INHERITDOC_TAG_NAME;
}
Defined in: yii\apidoc\models\BaseDoc::removeTag()
Removes tag of a given name
| public mixed removeTag ( string $name ) | ||
| $name | string | |
public function removeTag($name)
{
foreach ($this->tags as $i => $tag) {
if (strtolower($tag->getName()) == $name) {
unset($this->tags[$i]);
}
}
}