Class yii\apidoc\models\PropertyDoc
| Inheritance | yii\ |
|---|---|
| Available since extension's version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2-apidoc/blob/master/models/PropertyDoc.php |
Represents API documentation information for a property.
Public Properties
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\ |
|
| extractFirstSentence() | Extracts first sentence out of text | yii\ |
| getFirstTag() | Get the first tag of a given name | yii\ |
| getIsReadOnly() | yii\ |
|
| getIsWriteOnly() | 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 |
|---|---|---|
| mbUcFirst() | Multibyte version of ucfirst() | yii\ |
Property Details
If property is read only. This property is read-only.
If property is write only. This property is read-only.
Method Details
| public mixed __construct ( \ | ||
| $reflector | \ |
|
| $context | yii\ |
|
| $config | array | |
public function __construct($reflector = null, $context = null, $config = [])
{
parent::__construct($reflector, $context, $config);
if ($reflector === null) {
return;
}
$this->visibility = $reflector->getVisibility();
$this->isStatic = $reflector->isStatic();
// bypass $reflector->getDefault() for short array syntax
if ($reflector->getNode()->default) {
$this->defaultValue = PrettyPrinter::getRepresentationOfValue($reflector->getNode()->default);
}
$hasInheritdoc = false;
foreach ($this->tags as $tag) {
if ($tag->getName() === 'inheritdoc') {
$hasInheritdoc = true;
}
if ($tag instanceof VarTag) {
$this->type = $tag->getType();
$this->types = $tag->getTypes();
$this->description = static::mbUcFirst($tag->getDescription());
$this->shortDescription = BaseDoc::extractFirstSentence($this->description);
}
}
if (empty($this->shortDescription) && $context !== null && !$hasInheritdoc) {
$context->warnings[] = [
'line' => $this->startLine,
'file' => $this->sourceFile,
'message' => "No short description for element '{$this->name}'",
];
}
}
Defined in:
yii\
Extracts first sentence out of text
| public static string extractFirstSentence ( string $text ) | ||
| $text | string | |
public static function extractFirstSentence($text)
{
if (mb_strlen($text, 'utf-8') > 4 && ($pos = mb_strpos($text, '.', 4, 'utf-8')) !== false) {
$sentence = mb_substr($text, 0, $pos + 1, 'utf-8');
if (mb_strlen($text, 'utf-8') >= $pos + 3) {
$abbrev = mb_substr($text, $pos - 1, 4, 'utf-8');
if ($abbrev === 'e.g.' || $abbrev === 'i.e.') { // do not break sentence after abbreviation
$sentence .= static::extractFirstSentence(mb_substr($text, $pos + 1, mb_strlen($text, 'utf-8'), 'utf-8'));
}
}
return $sentence;
} else {
return $text;
}
}
Defined in:
yii\
Get the first tag of a given name
| public \ | ||
| $name | string | |
public function getFirstTag($name)
{
foreach ($this->tags as $i => $tag) {
if (strtolower($tag->getName()) == $name) {
return $this->tags[$i];
}
}
}
| public boolean getIsReadOnly ( ) | ||
| return | boolean |
If property is read only |
|---|---|---|
public function getIsReadOnly()
{
return $this->getter !== null && $this->setter === null;
}
| public boolean getIsWriteOnly ( ) | ||
| return | boolean |
If property is write only |
|---|---|---|
public function getIsWriteOnly()
{
return $this->getter === null && $this->setter !== null;
}
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\
Multibyte version of ucfirst()
| protected static mixed mbUcFirst ( mixed $string ) | ||
| $string | mixed | |
protected static function mbUcFirst($string)
{
$firstChar = mb_strtoupper(mb_substr($string, 0, 1, 'utf-8'), 'utf-8');
return $firstChar . mb_substr($string, 1, mb_strlen($string, 'utf-8'), 'utf-8');
}
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]);
}
}
}