class StaticReflectionClass

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Doctrine/StaticReflectionClass.php \Drupal\Component\Annotation\Doctrine\StaticReflectionClass
  2. 10 core/lib/Drupal/Component/Annotation/Doctrine/StaticReflectionClass.php \Drupal\Component\Annotation\Doctrine\StaticReflectionClass

Hierarchy

Expanded class hierarchy of StaticReflectionClass

File

core/lib/Drupal/Component/Annotation/Doctrine/StaticReflectionClass.php, line 32

Namespace

Drupal\Component\Annotation\Doctrine
View source
class StaticReflectionClass extends ReflectionClass {
    
    /**
     * The static reflection parser object.
     *
     * @var StaticReflectionParser
     */
    private $staticReflectionParser;
    public function __construct(StaticReflectionParser $staticReflectionParser) {
        $this->staticReflectionParser = $staticReflectionParser;
    }
    
    /**
     * {@inheritDoc}
     */
    public function getName() : string {
        return $this->staticReflectionParser
            ->getClassName();
    }
    
    /**
     * {@inheritDoc}
     */
    public function getDocComment() : string|false {
        return $this->staticReflectionParser
            ->getDocComment();
    }
    
    /**
     * {@inheritDoc}
     */
    public function getNamespaceName() : string {
        return $this->staticReflectionParser
            ->getNamespaceName();
    }
    
    /**
     * @return string[]
     */
    public function getUseStatements() {
        return $this->staticReflectionParser
            ->getUseStatements();
    }
    
    /**
     * Determines if the class has the provided class attribute.
     *
     * @param string $attribute The attribute to check for.
     *
     * @return bool
     */
    public function hasClassAttribute(string $attribute) {
        return $this->staticReflectionParser
            ->hasClassAttribute($attribute);
    }
    
    /**
     * {@inheritDoc}
     */
    public function getMethod($name) : \ReflectionMethod {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getProperty($name) : \ReflectionProperty {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public static function export($argument, $return = false) {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getConstant($name) : mixed {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getConstructor() : ?\ReflectionMethod {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getDefaultProperties() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getEndLine() : int|false {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getExtension() : ?\ReflectionExtension {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getExtensionName() : string|false {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getFileName() : string|false {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getInterfaceNames() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getInterfaces() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getMethods($filter = null) : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getModifiers() : int {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getParentClass() : \ReflectionClass|false {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getProperties($filter = null) : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getShortName() : string {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getStartLine() : int|false {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getStaticProperties() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getStaticPropertyValue($name, $default = '') : mixed {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getTraitAliases() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getTraitNames() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getTraits() : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function hasConstant($name) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function hasMethod($name) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function hasProperty($name) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function implementsInterface($interface) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function inNamespace() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isAbstract() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isCloneable() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isFinal() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isInstance($object) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isInstantiable() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isInterface() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isInternal() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isIterateable() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isSubclassOf($class) : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isTrait() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function isUserDefined() : bool {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function newInstanceArgs(array $args = []) : ?object {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function newInstanceWithoutConstructor() : object {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function setStaticPropertyValue($name, $value) : void {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function getConstants(?int $filter = null) : array {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function newInstance(mixed ...$args) : object {
        throw new ReflectionException('Method not implemented');
    }
    
    /**
     * {@inheritDoc}
     */
    public function __toString() {
        throw new ReflectionException('Method not implemented');
    }

}

Members

Title Sort descending Modifiers Object type Summary
StaticReflectionClass::$staticReflectionParser private property The static reflection parser object.
StaticReflectionClass::export public static function
StaticReflectionClass::getConstant public function
StaticReflectionClass::getConstants public function
StaticReflectionClass::getConstructor public function
StaticReflectionClass::getDefaultProperties public function
StaticReflectionClass::getDocComment public function
StaticReflectionClass::getEndLine public function
StaticReflectionClass::getExtension public function
StaticReflectionClass::getExtensionName public function
StaticReflectionClass::getFileName public function
StaticReflectionClass::getInterfaceNames public function
StaticReflectionClass::getInterfaces public function
StaticReflectionClass::getMethod public function
StaticReflectionClass::getMethods public function
StaticReflectionClass::getModifiers public function
StaticReflectionClass::getName public function
StaticReflectionClass::getNamespaceName public function
StaticReflectionClass::getParentClass public function
StaticReflectionClass::getProperties public function
StaticReflectionClass::getProperty public function
StaticReflectionClass::getShortName public function
StaticReflectionClass::getStartLine public function
StaticReflectionClass::getStaticProperties public function
StaticReflectionClass::getStaticPropertyValue public function
StaticReflectionClass::getTraitAliases public function
StaticReflectionClass::getTraitNames public function
StaticReflectionClass::getTraits public function
StaticReflectionClass::getUseStatements public function
StaticReflectionClass::hasClassAttribute public function Determines if the class has the provided class attribute.
StaticReflectionClass::hasConstant public function
StaticReflectionClass::hasMethod public function
StaticReflectionClass::hasProperty public function
StaticReflectionClass::implementsInterface public function
StaticReflectionClass::inNamespace public function
StaticReflectionClass::isAbstract public function
StaticReflectionClass::isCloneable public function
StaticReflectionClass::isFinal public function
StaticReflectionClass::isInstance public function
StaticReflectionClass::isInstantiable public function
StaticReflectionClass::isInterface public function
StaticReflectionClass::isInternal public function
StaticReflectionClass::isIterateable public function
StaticReflectionClass::isSubclassOf public function
StaticReflectionClass::isTrait public function
StaticReflectionClass::isUserDefined public function
StaticReflectionClass::newInstance public function
StaticReflectionClass::newInstanceArgs public function
StaticReflectionClass::newInstanceWithoutConstructor public function
StaticReflectionClass::setStaticPropertyValue public function
StaticReflectionClass::__construct public function
StaticReflectionClass::__toString public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.