Home
last modified time | relevance | path

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

12

/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A 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())
124 ->string($reflection->getName())
146 ->string($reflection->getName())
169 ->string($reflection->getName())
187 ->string($reflection->getName())
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A 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/
H A 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/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
H A 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/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
H A 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/
H A 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/
H A DThrowPromise.php73 $reflection = new ReflectionClass($classname);
74 $constructor = $reflection->getConstructor();
77 throw $reflection->newInstance();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A 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/
H A DFacade.php49 $reflection = new \ReflectionClass($this->_version);
50 throw new QueryBuilderException($this->_dsl->getType().' "'.$name.'" in '.$reflection->getShortName().' not supported');
/plugin/mdpage/vendor/cebe/markdown/
H A 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/
H A 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/
H A DError.php104 ->let($reflection = new \ReflectionObject($handler))
105 … ->array($invokeParameters = $reflection->getMethod('__invoke')->getParameters())
H A DIdle.php251 ->let($reflection = new \ReflectionObject($handler))
252 … ->array($invokeParameters = $reflection->getMethod('__invoke')->getParameters())
/plugin/findologicxmlexport/vendor/hoa/event/
H A DEvent.php140 $reflection = new \ReflectionClass($source);
142 if (false === $reflection->implementsInterface('\Hoa\Event\Source')) {
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
H A DRequireCssProcess.php35 $reflection = new \ReflectionClass($filter);
36 $filters[] = $reflection->newInstanceArgs($filterParams);
H A DRequireJsProcess.php254 $reflection = new \ReflectionClass($filter);
256 $filter = $reflection->newInstanceArgs($filterParams);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A 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/findologicxmlexport/vendor/jms/metadata/tests/
H A DMethodMetadataTest.php21 $this->assertEquals($expectedReflector, $metadata->reflection);
/plugin/reflect/
H A 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/
H A DParameter.php111 $reflection = new \ReflectionClass($owner);
113 if (false === $reflection->implementsInterface('\Hoa\Zformat\Parameterizable')) {
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A DREADME.md17 composer require phpdocumentor/reflection-docblock
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dindex.rst60 The access to the annotations happens by reflection of the class
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlSerializationVisitor.php268 …:$%s. Expected character data, but got %s.', $metadata->reflection->class, $metadata->reflection->…
/plugin/imageflow/syntax/
H A Dimageflow.php188 if ( $reflection = plugin_load('syntax', 'reflect')) {

12