Home
last modified time | relevance | path

Searched refs:reflection (Results 1 – 25 of 48) sorted by relevance

12

/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
DXcallable.php64 ->object($reflection = $result->getReflection())
66 ->string($reflection->getName())
82 ->object($reflection = $result->getReflection())
84 ->string($reflection->getName())
100 ->object($reflection = $result->getReflection())
102 ->string($reflection->getName())
122 ->object($reflection = $result->getReflection())
124 ->string($reflection->getName())
144 ->object($reflection = $result->getReflection())
146 ->string($reflection->getName())
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/src/
DMethodMetadata.php30 public $reflection; variable in Metadata\\MethodMetadata
37 $this->reflection = new \ReflectionMethod($class, $name);
38 $this->reflection->setAccessible(true);
48 return $this->reflection->invokeArgs($obj, $args);
75 $this->reflection = new \ReflectionMethod($this->class, $this->name);
76 $this->reflection->setAccessible(true);
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/
DInstantiator.php121 $reflection = new ReflectionClass($className);
123 if ($reflection->isAbstract()) {
124 throw InvalidArgumentException::fromAbstractClass($reflection);
127 return $reflection;
194 private function isSafeToClone(ReflectionClass $reflection) : bool argument
196 return $reflection->isCloneable() && ! $reflection->hasMethod('__clone');
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
DReflectionHelper.php60 … $reflection = is_object($object) ? new ReflectionObject($object) : new ReflectionClass($object);
62 if ($reflection->hasProperty($name)) {
63 return $reflection->getProperty($name);
66 if ($parentClass = $reflection->getParentClass()) {
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
DReflectionHelper.php60 … $reflection = is_object($object) ? new ReflectionObject($object) : new ReflectionClass($object);
62 if ($reflection->hasProperty($name)) {
63 return $reflection->getProperty($name);
66 if ($parentClass = $reflection->getParentClass()) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
DDoubler.php106 $reflection = new ReflectionClass($classname);
109 return $reflection->newInstanceArgs($args);
111 if ((null === $constructor = $reflection->getConstructor())
113 return $reflection->newInstance();
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
DThrowPromise.php73 $reflection = new ReflectionClass($classname);
74 $constructor = $reflection->getConstructor();
77 throw $reflection->newInstance();
/plugin/deletepageguard/tests/
H A Dtest_runner.php308 $reflection = new ReflectionMethod($plugin, 'validateRegexPattern'); variable
309 return $reflection->isPublic();
314 $reflection = new ReflectionMethod($plugin, 'matchesPattern'); variable
315 return $reflection->isPublic();
320 $reflection = new ReflectionMethod($plugin, 'getMatchTarget'); variable
321 return $reflection->isPublic();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
DIsInstanceOf.php83 $reflection = new ReflectionClass($this->className);
84 if ($reflection->isInterface()) {
/plugin/bez/action/
H A Dmaildebug.php39 $reflection = new \ReflectionClass($mail);
40 $property = $reflection->getProperty('html');
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/
DFacade.php49 $reflection = new \ReflectionClass($this->_version);
50 …throw new QueryBuilderException($this->_dsl->getType().' "'.$name.'" in '.$reflection->getShortNam…
/plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/tests/
DBaseTestCase.php27 $reflection = new \ReflectionClass(get_class($object));
28 $method = $reflection->getMethod($methodName);
/plugin/mdpage/vendor/cebe/markdown/
DParser.php120 $reflection = new \ReflectionClass($this);
124 }, $reflection->getMethods(ReflectionMethod::IS_PROTECTED)));
274 $reflection = new \ReflectionClass($this);
275 foreach($reflection->getMethods(ReflectionMethod::IS_PROTECTED) as $method) {
/plugin/displayfile/
Dsyntax.php211 $reflection = new ReflectionClass($renderer);
212 $property = $reflection->getProperty('_codeblock');
219 $reflection = new ReflectionClass($renderer);
220 $property = $reflection->getProperty('_codeblock');
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
DError.php104 ->let($reflection = new \ReflectionObject($handler))
105 … ->array($invokeParameters = $reflection->getMethod('__invoke')->getParameters())
DIdle.php251 ->let($reflection = new \ReflectionObject($handler))
252 … ->array($invokeParameters = $reflection->getMethod('__invoke')->getParameters())
/plugin/findologicxmlexport/vendor/hoa/event/
DEvent.php140 $reflection = new \ReflectionClass($source);
142 if (false === $reflection->implementsInterface('\Hoa\Event\Source')) {
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
DRequireCssProcess.php35 $reflection = new \ReflectionClass($filter);
36 $filters[] = $reflection->newInstanceArgs($filterParams);
DRequireJsProcess.php254 $reflection = new \ReflectionClass($filter);
256 $filter = $reflection->newInstanceArgs($filterParams);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
DClientBuilder.php201 $reflection = new ReflectionClass($builder);
202 if ($reflection->hasMethod($method)) {
203 $func = $reflection->getMethod($method);
675 $reflection = new ReflectionClass($fullPath);
676 $constructor = $reflection->getConstructor();
/plugin/structnotification/_test/
H A DNotificationTest.php173 $reflection = new \ReflectionClass($this->action);
174 $method = $reflection->getMethod($methodName);
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
DMethodMetadataTest.php21 $this->assertEquals($expectedReflector, $metadata->reflection);
/plugin/reflect/
DREADME.md13 …//194.95.111.244/~countzero/myCMS/index.php?c_id=5&s_id=21), using the reflection routine from [he…
/plugin/findologicxmlexport/vendor/hoa/zformat/
DParameter.php111 $reflection = new \ReflectionClass($owner);
113 if (false === $reflection->implementsInterface('\Hoa\Zformat\Parameterizable')) {
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
DREADME.md17 composer require phpdocumentor/reflection-docblock

12