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/
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);
133 …private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, string $seria… argument
135 …set_error_handler(static function ($code, $message, $file, $line) use ($reflectionClass, & $error)…
137 $reflectionClass,
146 $this->attemptInstantiationViaUnSerialization($reflectionClass, $serializedString);
159 …private function attemptInstantiationViaUnSerialization(ReflectionClass $reflectionClass, string $… argument
164 … throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception);
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
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/
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();
DClassTagRetriever.php39 public function getTagList(\ReflectionClass $reflectionClass) argument
43 $reflectionClass,
44 $this->contextFactory->createFromReflector($reflectionClass)
DLegacyClassTagRetriever.php29 public function getTagList(\ReflectionClass $reflectionClass) argument
31 $phpdoc = new DocBlock($reflectionClass->getDocComment());
DMethodTagRetrieverInterface.php29 public function getTagList(\ReflectionClass $reflectionClass); argument
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/
DUnexpectedValueException.php16 ReflectionClass $reflectionClass, argument
22 $reflectionClass->getName()
30 ReflectionClass $reflectionClass, argument
40 $reflectionClass->getName(),
DInvalidArgumentException.php30 public static function fromAbstractClass(ReflectionClass $reflectionClass) : self argument
34 $reflectionClass->getName()
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/tests/
D002-final.phpt9 $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
10 var_dump($reflectionClass->isFinal());
/plugin/structjoin/types/
DJoin.php134 $reflectionClass = new ReflectionClass(QueryBuilder::class);
135 $reflectionProperty = $reflectionClass->getProperty($property);
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
Dindex.rst68 $reflectionClass = new ReflectionClass(Foo::class);
69 $property = $reflectionClass->getProperty('bar');
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
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/
DAbstractService.php229 $reflectionClass = new ReflectionClass(get_class($this));
231 return in_array($scope, $reflectionClass->getConstants(), true);
/plugin/bez/mdl/
DThreadFactory.php237 $reflectionClass = new \ReflectionClass('dokuwiki\plugin\bez\mdl\Thread');
238 $reflectionProperty = $reflectionClass->getProperty('state');
DFactory.php261 $reflectionClass = new \ReflectionClass($obj);
262 $reflectionProperty = $reflectionClass->getProperty('id');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
DTeamCity.php401 $reflectionClass = new ReflectionClass($className);
402 $fileName = $reflectionClass->getFileName();