Class luya\admin\openapi\phpdoc\PhpDocReflection

Inheritanceluya\admin\openapi\phpdoc\PhpDocReflection
Available since version3.2.0
Source Code https://github.com/luyadev/luya-module-admin/blob/master/src/openapi/phpdoc/PhpDocReflection.php

PHP Doc Reflection object.

Property Details

Hide inherited properties

$reflection protected property

Method Details

Hide inherited methods

__construct() public method

public void __construct ( Reflector $reflection )
$reflection ReflectionMethod|ReflectionClass

                public function __construct(Reflector $reflection)
{
    $this->reflection = $reflection;
}

            
getDocComment() public method

public void getDocComment ( )

                public function getDocComment()
{
    return $this->reflection->getDocComment();
}

            
getFileName() public method

public void getFileName ( )

                public function getFileName()
{
    return $this->reflection->getFileName();
}

            
getNamespaceName() public method

public void getNamespaceName ( )

                public function getNamespaceName()
{
    return $this->reflection->getNamespaceName();
}