AppserverIo\Appserver\AspectContainer\AspectManager::getReflectionClass PHP Method

getReflectionClass() public method

Returns a reflection class instance for the passed class name.
See also: DependencyInjectionContainer\Interfaces\ProviderInterface::getReflectionClass()
public getReflectionClass ( string $className ) : AppserverIo\Lang\Reflection\ReflectionClass
$className string The class name to return the reflection class instance for
return AppserverIo\Lang\Reflection\ReflectionClass The reflection instance
    public function getReflectionClass($className)
    {
        return $this->getApplication()->search('ProviderInterface')->getReflectionClass($className);
    }