Home
last modified time | relevance | path

Searched refs:method (Results 601 – 625 of 972) sorted by last modified time

1...<<21222324252627282930>>...39

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dreturn_type_declarations_void.phpt65 public function method()
69 return call_user_func_array(array($expects, 'method'), func_get_args());
/plugin/findologicxmlexport/vendor/sebastian/code-unit-reverse-lookup/src/
H A DWizard.php67 foreach ($reflector->getMethods() as $method) {
68 $this->processFunctionOrMethod($method);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst130 A filter is a regular PHP function or an object method that takes the left
178 Adding a filter is as simple as calling the ``addFilter()`` method on the
314 ``addFunction()`` method on the ``\Twig\Environment`` instance::
604 way, you just need to implement the ``getName()`` method as the
645 method::
663 method::
681 method. This method must return an array of filters to add to the Twig
706 when defining a filter to use a method::
727 method to call.
763 ``addExtension()`` method on the environment instance::
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DClassMetadata.php186 public function addPreSerializeMethod(MethodMetadata $method): void argument
188 $this->preSerializeMethods[] = $method;
191 public function addPostSerializeMethod(MethodMetadata $method): void argument
193 $this->postSerializeMethods[] = $method;
196 public function addPostDeserializeMethod(MethodMetadata $method): void argument
198 $this->postDeserializeMethods[] = $method;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php138 foreach ($elem->xpath('./virtual-property') as $method) {
139 if (isset($method->attributes()->expression)) {
142 (string) $method->attributes()->name,
146 if (!isset($method->attributes()->method)) {
149 …rtualPropertyMetadata = new VirtualPropertyMetadata($name, (string) $method->attributes()->method);
153 $propertiesNodes[] = $method;
340 foreach ($elem->xpath('./callback-method') as $method) {
341 if (!isset($method->attributes()->type)) {
344 if (!isset($method->attributes()->name)) {
348 switch ((string) $method->attributes()->type) {
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Exclusion/
H A DExpressionLanguageExclusionStrategyTest.php28 $this->context->method('getObject')->willReturn($this->visitedObject);
43 ->method('evaluate')
58 $this->expressionEvaluator->expects($this->never())->method('evaluate');
H A DDisjunctExclusionStrategyTest.php26 ->method('shouldSkipClass')
31 ->method('shouldSkipClass');
47 ->method('shouldSkipClass')
52 ->method('shouldSkipClass')
70 ->method('shouldSkipClass')
75 ->method('shouldSkipClass')
93 ->method('shouldSkipProperty')
114 ->method('shouldSkipProperty')
119 ->method('shouldSkipProperty')
137 ->method('shouldSkipProperty')
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DCachedReader.php137 public function getMethodAnnotations(\ReflectionMethod $method) argument
139 $class = $method->getDeclaringClass();
140 $cacheKey = $class->getName().'#'.$method->getName();
147 $annots = $this->delegate->getMethodAnnotations($method);
157 public function getMethodAnnotation(\ReflectionMethod $method, $annotationName) argument
159 foreach ($this->getMethodAnnotations($method) as $annot) {
H A DReader.php58 function getMethodAnnotations(\ReflectionMethod $method); argument
68 function getMethodAnnotation(\ReflectionMethod $method, $annotationName); argument
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md74 `getIterator` method. It extends
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md127 method, that's all. That's the most undefined stream. All capabilities
132 The main `Hoa\Stream\Stream` class is abstract. Two method
251 method.
266 must manually call the `open` method to open the stream then. Between
496 `Hoa\Stream\Filter\Filter::getRegistered` method will provide the list
500 calls its public `compute` method when the stream reaches its end. So
501 by extending this filter, you can override the `compute` method and
511 being opened with the `stream_open` method (from the
H A DCHANGELOG.md26 * Stream: Add the `hasBeenDeferred` method. (Ivan Enderlin, 2017-02-03T11:03:21+01:00)
99 * Add the `hasTimedOut` method. (Ivan Enderlin, 2015-08-28T09:27:15+02:00)
110 * Add the `isBorrowing` method. (Ivan Enderlin, 2015-03-03T10:25:18+01:00)
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DMetadataFactoryTest.php21 ->method('loadMetadataForClass')
29 ->method('loadMetadataForClass')
49 ->method('loadMetadataForClass')
57 ->method('loadMetadataForClass')
127 ->method('load')
133 ->method('put')
193 ->method('getAllClassNames')
220 ->method('load')
228 ->method('put')
261 ->method('load')
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEventDispatcher.php63 $method = $eventData['method'] ?? self::getDefaultMethodName($eventData['event']);
67 … $this->listeners[$eventData['event']][] = [[$subscriber, $method], $class, $format, $interface];
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DSerializationGraphNavigator.php213 foreach ($metadata->preSerializeMethods as $method) {
214 $method->invoke($data);
249 foreach ($metadata->postSerializeMethods as $method) {
250 $method->invoke($object);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DHandlerRegistry.php54 …$method = $methodData['method'] ?? self::getDefaultMethod($direction, $methodData['type'], $method…
55 …this->registerHandler($direction, $methodData['type'], $methodData['format'], [$handler, $method]);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DIteratorHandlerTest.php86 $visitor->method('visitArray')->with(self::DATA)->willReturn(self::DATA);
93 $visitor->method('visitArray')->with(self::DATA)->willReturn(self::DATA);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DSerializationContextFactoryTest.php51 ->method('createSerializationContext')
70 ->method('createDeserializationContext')
90 ->method('createSerializationContext')
109 ->method('createDeserializationContext')
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md77 the `isKeyword` method will tell you if they are reserved keywords: Not only
91 `Hoa\Consistency\Consistency::isIdentifier` method to check an identifier is
142 The API also provides the `load` method to force the load of an entity,
165 * `'class::method'` as a string,
166 * `'class', 'method'` as 2 string arguments,
167 * `$object, 'method'` as 2 arguments,
170 * `['class', 'method']` as an array of strings,
171 * `[$object, 'method']` as an array.
222 When the object is set but not the method, the latter will be deduced if
226 `writeInteger`, `writeString`, `writeArray` etc. method will be used. If the
[all …]
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DREADME.md69 static `getInstance` method on the `Hoa\Protocol\Protocol` class which
117 `Hoa\Protocol\Protocol::resolve` method:
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/
H A DAbstractFileDriverTest.php30 …$this->driver->expects($this->any())->method('getExtension')->will($this->returnValue(self::$exten…
38 ->method('findFileForClass')
44 ->method('loadMetadataFromFile')
56 ->method('findFileForClass')
68 ->method('findAllClasses')
H A DDriverChainTest.php18 ->method('loadMetadataForClass')
31 ->method('getAllClassNames')
37 ->method('getAllClassNames')
53 ->method('loadMetadataForClass')
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md59 - Doctrine driver normalizeFieldType method does not handle nulls [\#1020](https://github.com/schmi…
400 - Missing bool type in graphNavigator.php in method accept\(\) [\#764](https://github.com/schmittjo…
460 - Public method accessor is required for excluded/not exposed properties [\#519](https://github.com…
493 - Where in the JMS code does the navigator call VisitProperty method for visitor [\#207](https://gi…
585 - How to handle DateTime serialization with fromArray method ? [\#723](https://github.com/schmittjo…
676 - Warning: Invalid argument supplied for foreach\(\) on getCurrentPath method [\#668](https://githu…
831 - Fix the method name for the serialization context factory [\#490](https://github.com/schmittjoh/s…
987 - Remove useless YamlSerializationVisitor::prepare method [\#75](https://github.com/schmittjoh/seri…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Devent_system.rst23 'method' => 'onPreSerialize',
H A Dhandlers.rst51 'method' => 'serializeDateTimeToJson',
57 'method' => 'deserializeDateTimeToJson',

1...<<21222324252627282930>>...39