Home
last modified time | relevance | path

Searched refs:method (Results 526 – 550 of 972) sorted by last modified time

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

/plugin/findologicxmlexport/vendor/sebastian/version/
H A DREADME.md22 Apart from the constructor, the `SebastianBergmann\Version` class has a single public method: `getV…
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Ddate.rst24 Internally, Twig uses the PHP ``DateTime::diff()`` method for calculating the
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
H A DDateTest.php65 ->method('transChoice')
H A DTextTest.php24 ->method('getCharset')
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DREADME.md93 `Hoa\Ustring\Ustring::getDirection` method (which call the
94 `Hoa\Ustring\Ustring::getCharDirection` static method), it returns either
169 For example, the `Hoa\Ustring\Search::approximated` method make a search by
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DUPGRADING.md9 - The minimum PHP version is 7.2, type hints are used almost everywhere, most of the method signatu…
18 - Removed deprecated method `VisitorInterface::getNavigator`, use `Context::getNavigator` instead
19 - Removed deprecated method `JsonSerializationVisitor::addData`,
24 - Removed `AbstractVisitor::getNamingStrategy` method
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst41 As you can see, we also added a call to the ``setDebug`` method. In debug mode, the serializer will…
83 every time you call method ``serialize()`` (or ``toArray()``),
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst94 set the value via reflection, but you may change this to use a public method instead:
119 This annotation can be defined on a property to specify which public method should
208 This annotation can be defined on a method to indicate that the data returned by
209 the method should appear like a property of the object.
211 A virtual property can be defined for a method of an object to serialize and can be
257 - ``lastName`` is exposed using the ``getLastName`` getter method.
262 (for sorting proposes as example). When not specified, it defaults to the method name with the "get…
284 This annotation can be defined on a method which is supposed to be called before
289 This annotation can be defined on a method which is then called directly after the
294 This annotation can be defined on a method which is supposed to be called after
H A Dxml_reference.rst50 <callback-method name="foo" type="pre-serialize" />
51 <callback-method name="bar" type="post-serialize" />
52 <callback-method name="baz" type="post-deserialize" />
54 <virtual-property method="public_method"
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DDeserializationGraphNavigator.php237 foreach ($metadata->postDeserializeMethods as $method) {
238 $method->invoke($object);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DConstraintViolationHandler.php25 foreach ($types as $type => $method) {
31 'method' => $method . 'To' . $format,
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionHandlerTest.php26 $visitor->method('visitArray')->with(['foo'])->willReturn(['foo']);
44 $visitor->method('visitArray')->with([])->willReturn([]);
49 …$factoryMock->method('getMetadataForClass')->willReturn(new ClassMetadata(ArrayCollection::class));
51 $context->method('getExclusionStrategy')->willReturn(new AlwaysExcludeExclusionStrategy());
52 $context->method('getMetadataFactory')->willReturn($factoryMock);
H A DFormErrorHandlerTest.php153 ->method('trans')
163 $formError->expects($this->once())->method('getMessageParameters')->willReturn([]);
176 ->method('transChoice')
187 $formError->expects($this->once())->method('getMessageParameters')->willReturn([]);
200 ->method('trans')
210 $formError->expects($this->once())->method('getMessageParameters')->willReturn([]);
223 ->method('transChoice')
262 ->method('getName')
265 ->method('getConfig')
276 protected function invokeMethod($object, $method, array $args = []) argument
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DDoctrinePHPCRDriverTest.php108 ->method('getManagerForClass')
/plugin/findologicxmlexport/vendor/doctrine/instantiator/docs/en/
H A Dindex.rst9 The suggested installation method is via `composer`_:
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DXcallable.php273 protected function _get_valid_callback_stream_xxx($argument, $method) argument
284 ->isEqualTo([$stream, $method]);
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DXcallable.php201 $method = 'writeCharacter';
203 $method = 'writeString';
211 $method = 'write' . ucfirst($type);
216 $method = 'writeFloat';
221 $method = 'writeAll';
225 $callback[1] = $method;
/plugin/findologicxmlexport/vendor/hoa/event/
H A DREADME.md113 The `Hoa\Event\Listenable` interface requires the `on` method to be present to
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinstallation.rst73 You can also install the C extension via PEAR (note that this method is
112 ``\Twig\Template::getAttribute()`` method.
H A Dintro.rst68 The ``render()`` method loads the template passed as a first argument and
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c398 ZVAL_STRING(zfunction, method, 1); in TWIG_CALL_S()
423 static int TWIG_CALL_SB(zval *object, char *method, char *arg0 TSRMLS_DC) in TWIG_CALL_SB() argument
428 retval_ptr = TWIG_CALL_S(object, method, arg0 TSRMLS_CC); in TWIG_CALL_SB()
450 ZVAL_STRING(zfunction, method, 1); in TWIG_CALL_ZZ()
995 char *method = NULL; in PHP_FUNCTION() local
1014 method = item; in PHP_FUNCTION()
1016 method = tmp_method_name_get; in PHP_FUNCTION()
1018 method = tmp_method_name_is; in PHP_FUNCTION()
1020 method = item; in PHP_FUNCTION()
1069 ZVAL_STRING(zmethod, method, 1); in PHP_FUNCTION()
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Filter/
H A DMethod.php28 protected $method; variable in Twig_Filter_Method
30 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument
32 $options['callable'] = [$extension, $method];
37 $this->method = $method;
42 …eturn sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method);
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php529 * @param string $method The method to use for rounding
533 function twig_round($value, $precision = 0, $method = 'common') argument
535 if ('common' == $method) {
539 if ('ceil' != $method && 'floor' != $method) {
543 return $method($value * pow(10, $precision)) / pow(10, $precision);
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicy.php89 public function checkMethodAllowed($obj, $method) argument
96 $method = strtolower($method);
99 $allowed = \in_array($method, $methods);
107 …sprintf('Calling "%s" method on a "%s" object is not allowed.', $method, $class), $class, $method);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray_call.test2 Twig supports method calls

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