Class yii\apidoc\models\MethodDoc
| Inheritance | yii\ |
|---|---|
| Available since extension's version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2-apidoc/blob/master/models/MethodDoc.php |
Represents API documentation information for a method.
Public Properties
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\ |
|
| getFirstTag() | Get the first tag of a given name | yii\ |
| getPackageName() | Returns the Composer package for this type, if it can be determined from $sourceFile. | yii\ |
| hasTag() | Checks if doc has tag of a given name | yii\ |
| removeTag() | Removes tag of a given name | yii\ |
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| isInheritdocTag() | yii\ |
Constants
| Constant | Value | Description | Defined By |
|---|---|---|---|
| INHERITDOC_TAG_NAME | 'inheritdoc' | yii\ |
|
| PHPSTAN_IMPORT_TYPE_ANNOTATION_NAME | 'phpstan-import-type' | yii\ |
|
| PHPSTAN_TYPE_ANNOTATION_NAME | 'phpstan-type' | yii\ |
|
| PSALM_IMPORT_TYPE_ANNOTATION_NAME | 'psalm-import-type' | yii\ |
|
| PSALM_TYPE_ANNOTATION_NAME | 'psalm-type' | yii\ |
|
| TODO_TAG_NAME | 'todo' | yii\ |
Property Details
Method Details
| public mixed __construct ( yii\ | ||
| $parent | yii\ |
|
| $reflector | \ |
|
| $context | yii\ |
|
| $config | array | |
public function __construct($parent, $reflector = null, $context = null, $config = [])
{
parent::__construct($parent, $reflector, $context, $config);
if ($reflector === null) {
return;
}
$this->isAbstract = $reflector->isAbstract();
$this->isFinal = $reflector->isFinal();
$this->isStatic = $reflector->isStatic();
$this->visibility = (string) $reflector->getVisibility();
$lines = file($this->sourceFile);
for ($i = $this->startLine - 1; $i <= $this->endLine - 1; $i++) {
$this->sourceCode .= substr($lines[$i], 4);
}
}
Defined in:
yii\
Get the first tag of a given name
| public \ | ||
| $name | string |
Tag name. |
| return | \ |
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\
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\
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\
| protected boolean isInheritdocTag ( \ | ||
| $tag | \ |
|
protected function isInheritdocTag(Tag $tag): bool
{
return $tag instanceof Generic && $tag->getName() === self::INHERITDOC_TAG_NAME;
}
Defined in:
yii\
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]);
}
}
}