Class yii\apidoc\models\BaseDoc

Inheritanceyii\apidoc\models\BaseDoc » yii\base\Object
Implementsyii\base\Configurable
Subclassesyii\apidoc\models\ClassDoc, yii\apidoc\models\ConstDoc, yii\apidoc\models\EventDoc, yii\apidoc\models\FunctionDoc, yii\apidoc\models\InterfaceDoc, yii\apidoc\models\MethodDoc, yii\apidoc\models\PropertyDoc, yii\apidoc\models\TraitDoc, yii\apidoc\models\TypeDoc
Available since version2.0
Source Code https://github.com/yiisoft/yii2-apidoc/blob/master/models/BaseDoc.php

Base class for API documentation information.

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__call() Calls the named method which is not a class method. yii\base\Object
__construct() yii\apidoc\models\BaseDoc
__get() Returns the value of an object property. yii\base\Object
__isset() Checks if a property is set, i.e. defined and not null. yii\base\Object
__set() Sets value of an object property. yii\base\Object
__unset() Sets an object property to null. yii\base\Object
canGetProperty() Returns a value indicating whether a property can be read. yii\base\Object
canSetProperty() Returns a value indicating whether a property can be set. yii\base\Object
className() Returns the fully qualified name of this class. yii\base\Object
extractFirstSentence() Extracts first sentence out of text yii\apidoc\models\BaseDoc
hasMethod() Returns a value indicating whether a method is defined. yii\base\Object
hasProperty() Returns a value indicating whether a property is defined. yii\base\Object
hasTag() Checks if doc has tag of a given name yii\apidoc\models\BaseDoc
init() Initializes the object. yii\base\Object
removeTag() Removes tag of a given name yii\apidoc\models\BaseDoc

Property Details

$deprecatedReason public property
$deprecatedSince public property
$description public property
$description null
$endLine public property
$endLine null
$name public property
$name null
$phpDocContext public property
\phpDocumentor\Reflection\DocBlock\Context $phpDocContext null
$shortDescription public property
$since public property
$since null
$sourceFile public property
$sourceFile null
$startLine public property
$startLine null
$tags public property
\phpDocumentor\Reflection\DocBlock\Tag $tags = []

Method Details

__construct() public method

void __construct$reflector null$context null$config = [] )
$reflector \phpDocumentor\Reflection\BaseReflector
$context yii\apidoc\models\Context
$config array
extractFirstSentence() public method

Extracts first sentence out of text

string extractFirstSentence$text )
$text string
hasTag() public method

Checks if doc has tag of a given name

boolean hasTag$name )
$name string

Tag name

return boolean

If doc has tag of a given name

removeTag() public method

Removes tag of a given name

void removeTag$name )
$name string