Home
last modified time | relevance | path

Searched refs:reflectionClass (Results 1 – 16 of 16) sorted by relevance

/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/
H A DInstantiator.php89 $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 DMagicCallPatch.php60 $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 DClassAndInterfaceTagRetriever.php45 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 DClassTagRetriever.php39 public function getTagList(\ReflectionClass $reflectionClass) argument
43 $reflectionClass,
44 $this->contextFactory->createFromReflector($reflectionClass)
H A DLegacyClassTagRetriever.php29 public function getTagList(\ReflectionClass $reflectionClass) argument
31 $phpdoc = new DocBlock($reflectionClass->getDocComment());
H A DMethodTagRetrieverInterface.php29 public function getTagList(\ReflectionClass $reflectionClass); argument
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/
H A DUnexpectedValueException.php16 ReflectionClass $reflectionClass, argument
22 $reflectionClass->getName()
30 ReflectionClass $reflectionClass, argument
40 $reflectionClass->getName(),
H A DInvalidArgumentException.php30 public static function fromAbstractClass(ReflectionClass $reflectionClass) : self argument
34 $reflectionClass->getName()
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/tests/
H A D002-final.phpt9 $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
10 var_dump($reflectionClass->isFinal());
/plugin/structjoin/types/
H A DJoin.php134 $reflectionClass = new ReflectionClass(QueryBuilder::class);
135 $reflectionProperty = $reflectionClass->getProperty($property);
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dindex.rst68 $reflectionClass = new ReflectionClass(Foo::class);
69 $property = $reflectionClass->getProperty('bar');
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php232 $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 DAbstractService.php229 $reflectionClass = new ReflectionClass(get_class($this));
231 return in_array($scope, $reflectionClass->getConstants(), true);
/plugin/bez/mdl/
H A DThreadFactory.php237 $reflectionClass = new \ReflectionClass('dokuwiki\plugin\bez\mdl\Thread');
238 $reflectionProperty = $reflectionClass->getProperty('state');
H A DFactory.php261 $reflectionClass = new \ReflectionClass($obj);
262 $reflectionProperty = $reflectionClass->getProperty('id');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTeamCity.php401 $reflectionClass = new ReflectionClass($className);
402 $fileName = $reflectionClass->getFileName();