/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/ |
H A D | Instantiator.php | 89 $reflectionClass = $this->getReflectionClass($className); variable in Doctrine\\Instantiator\\Instantiator 91 if ($this->isInstantiableViaReflection($reflectionClass)) { 92 return [$reflectionClass, 'newInstanceWithoutConstructor']; 102 $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString); 137 $reflectionClass, 168 private function isInstantiableViaReflection(ReflectionClass $reflectionClass) : bool argument 170 return ! ($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal()); 176 private function hasInternalAncestors(ReflectionClass $reflectionClass) : bool argument 179 if ($reflectionClass->isInternal()) { 183 $reflectionClass = $reflectionClass->getParentClass(); [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ |
H A D | MagicCallPatch.php | 60 $reflectionClass = new \ReflectionClass($type); 62 while ($reflectionClass) { 63 $tagList = $this->tagRetriever->getTagList($reflectionClass); 72 if (!$reflectionClass->hasMethod($methodName)) { 79 $reflectionClass = $reflectionClass->getParentClass();
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ |
H A D | ClassAndInterfaceTagRetriever.php | 45 public function getTagList(\ReflectionClass $reflectionClass) argument 48 $this->classRetriever->getTagList($reflectionClass), 49 $this->getInterfacesTagList($reflectionClass) 58 private function getInterfacesTagList(\ReflectionClass $reflectionClass) argument 60 $interfaces = $reflectionClass->getInterfaces();
|
H A D | ClassTagRetriever.php | 39 public function getTagList(\ReflectionClass $reflectionClass) argument 43 $reflectionClass, 44 $this->contextFactory->createFromReflector($reflectionClass)
|
H A D | LegacyClassTagRetriever.php | 29 public function getTagList(\ReflectionClass $reflectionClass) argument 31 $phpdoc = new DocBlock($reflectionClass->getDocComment());
|
H A D | MethodTagRetrieverInterface.php | 29 public function getTagList(\ReflectionClass $reflectionClass); argument
|
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ |
H A D | UnexpectedValueException.php | 16 ReflectionClass $reflectionClass, argument 22 $reflectionClass->getName() 30 ReflectionClass $reflectionClass, argument 40 $reflectionClass->getName(),
|
H A D | InvalidArgumentException.php | 30 public static function fromAbstractClass(ReflectionClass $reflectionClass) : self argument 34 $reflectionClass->getName()
|
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/tests/ |
H A D | 002-final.phpt | 9 $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader'); 10 var_dump($reflectionClass->isFinal());
|
/plugin/structjoin/types/ |
H A D | Join.php | 134 $reflectionClass = new ReflectionClass(QueryBuilder::class); 135 $reflectionProperty = $reflectionClass->getProperty($property);
|
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/ |
H A D | index.rst | 68 $reflectionClass = new ReflectionClass(Foo::class); 69 $property = $reflectionClass->getProperty('bar');
|
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/ |
H A D | AbstractService.php | 232 $reflectionClass = new \ReflectionClass(get_class($this)); 234 return in_array($scope, $reflectionClass->getConstants(), true);
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/ |
H A D | AbstractService.php | 229 $reflectionClass = new ReflectionClass(get_class($this)); 231 return in_array($scope, $reflectionClass->getConstants(), true);
|
/plugin/bez/mdl/ |
H A D | ThreadFactory.php | 237 $reflectionClass = new \ReflectionClass('dokuwiki\plugin\bez\mdl\Thread'); 238 $reflectionProperty = $reflectionClass->getProperty('state');
|
H A D | Factory.php | 261 $reflectionClass = new \ReflectionClass($obj); 262 $reflectionProperty = $reflectionClass->getProperty('id');
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/ |
H A D | TeamCity.php | 401 $reflectionClass = new ReflectionClass($className); 402 $fileName = $reflectionClass->getFileName();
|