Class yii\apidoc\models\FunctionDoc
| Inheritance | yii\apidoc\models\FunctionDoc » yii\apidoc\models\BaseDoc » yii\base\BaseObject |
|---|---|
| Subclasses | yii\apidoc\models\MethodDoc |
| Available since extension's version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2-apidoc/blob/master/models/FunctionDoc.php |
Represents API documentation information for a function.
Public Properties
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\apidoc\models\FunctionDoc | |
| getFirstTag() | Get the first tag of a given name | yii\apidoc\models\BaseDoc |
| getPackageName() | Returns the Composer package for this type, if it can be determined from $sourceFile. | yii\apidoc\models\BaseDoc |
| 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 |
|---|---|---|
| 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 ( yii\apidoc\models\BaseDoc|null $parent, \phpDocumentor\Reflection\Php\Method|null $reflector = null, yii\apidoc\models\Context|null $context = null, array $config = [] ) | ||
| $parent | yii\apidoc\models\BaseDoc|null | |
| $reflector | \phpDocumentor\Reflection\Php\Method|null | |
| $context | yii\apidoc\models\Context|null | |
| $config | array | |
public function __construct($parent, $reflector = null, $context = null, $config = [])
{
parent::__construct($parent, $reflector, $context, $config);
if ($reflector === null) {
return;
}
$this->isReturnByReference = $reflector->getHasReturnByReference();
foreach ($reflector->getArguments() as $arg) {
$arg = new ParamDoc($this, $arg, $context, ['sourceFile' => $this->sourceFile]);
$this->params[$arg->name] = $arg;
}
$hasInheritdoc = false;
foreach ($this->tags as $i => $tag) {
if ($tag instanceof Throws) {
$this->exceptions[] = $tag;
unset($this->tags[$i]);
} elseif ($tag instanceof Param) {
$paramName = '$' . $tag->getVariableName();
if (!isset($this->params[$paramName]) && $context !== null) {
$context->errors[] = [
'line' => $this->startLine,
'file' => $this->sourceFile,
'message' => "Undefined parameter documented: $paramName in {$this->name}().",
];
continue;
}
$this->params[$paramName]->description = StringHelper::mb_ucfirst($tag->getDescription());
$this->params[$paramName]->type = $tag->getType();
unset($this->tags[$i]);
} elseif ($tag instanceof Return_) {
$this->returnType = $tag->getType();
$this->return = StringHelper::mb_ucfirst($tag->getDescription());
unset($this->tags[$i]);
} elseif ($this->isInheritdocTag($tag)) {
$hasInheritdoc = true;
}
}
if (!$hasInheritdoc && $this->returnType === null) {
$this->returnType = $reflector->getReturnType();
}
}
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;
}
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];
}
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;
}
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]);
}
}
}