Class luya\admin\openapi\phpdoc\PhpDocReflection
| Inheritance | luya\admin\openapi\phpdoc\PhpDocReflection |
|---|---|
| Available since version | 3.2.0 |
| Source Code | https://github.com/luyadev/luya-module-admin/blob/master/src/openapi/phpdoc/PhpDocReflection.php |
PHP Doc Reflection object.
Protected Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $reflection | ReflectionMethod|ReflectionClass | luya\admin\openapi\phpdoc\PhpDocReflection |
Public Methods
Property Details
Method Details
| public void __construct ( Reflector $reflection ) | ||
| $reflection | ReflectionMethod|ReflectionClass | |
public function __construct(Reflector $reflection)
{
$this->reflection = $reflection;
}
| public void getDocComment ( ) |
public function getDocComment()
{
return $this->reflection->getDocComment();
}
| public void getFileName ( ) |
public function getFileName()
{
return $this->reflection->getFileName();
}
| public void getNamespaceName ( ) |
public function getNamespaceName()
{
return $this->reflection->getNamespaceName();
}