Home
last modified time | relevance | path

Searched refs:argument (Results 126 – 150 of 219) sorted by last modified time

123456789

/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dmacro.rst21 Each argument can have a default value (here ``text`` is the default value for
26 Before Twig 1.12, defining default argument values was done via the
47 You can pass the whole context as an argument by using the special
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DCallExpression.php78 foreach ($this->getAttribute('arguments') as $argument) {
82 $compiler->string($argument);
247 foreach ($this->getAttribute('arguments') as $argument) {
252 $argument = end($parameters);
253 …if ($argument && $argument->isArray() && $argument->isDefaultValueAvailable() && [] === $argument-…
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DMacroNode.php28 foreach ($arguments as $argumentName => $argument) {
30 …arbitrary arguments.', self::VARARGS_NAME, $name, self::VARARGS_NAME), $argument->getTemplateLine(…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dmultiline_function_with_unknown_argument.test2 Exception for multiline function with unknown argument
9 Twig\Error\SyntaxError: Unknown argument "invalid" for function "include(template, variables, with_…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dblock_with_template.test2 "block" function with a template argument
H A Dblock_without_name.test12 Twig\Error\SyntaxError: The "block" function takes one argument (the block name) in "base.twig" at …
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DApproximateValueToken.php33 public function scoreArgument($argument) argument
35 … return round($argument, $this->precision) === round($this->value, $this->precision) ? 10 : false;
H A DArrayCountToken.php39 public function scoreArgument($argument) argument
41 return $this->isCountable($argument) && $this->hasProperCount($argument) ? 6 : false;
70 private function isCountable($argument) argument
72 return (is_array($argument) || $argument instanceof \Countable);
82 private function hasProperCount($argument) argument
84 return $this->count === count($argument);
H A DArrayEntryToken.php47 public function scoreArgument($argument) argument
49 if ($argument instanceof \Traversable) {
50 $argument = iterator_to_array($argument);
53 if ($argument instanceof \ArrayAccess) {
54 $argument = $this->convertArrayAccessToEntry($argument);
57 if (!is_array($argument) || empty($argument)) {
61 $keyScores = array_map(array($this->key,'scoreArgument'), array_keys($argument));
62 $valueScores = array_map(array($this->value,'scoreArgument'), $argument);
H A DArrayEveryEntryToken.php41 public function scoreArgument($argument) argument
43 if (!$argument instanceof \Traversable && !is_array($argument)) {
48 foreach ($argument as $key => $argumentEntry) {
H A DAnyValueToken.php28 public function scoreArgument($argument) argument
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst70 generate (so, ``40`` is an argument of the filter, not the value we want to
131 side of the filter (before the pipe ``|``) as first argument and the extra
150 As you can see, the ``'TWIG'`` string is passed as a first argument to the PHP
160 argument, and the compiled code is equivalent to:
184 The second argument of ``addFilter()`` is an instance of ``Twig_Filter``.
186 first argument passed to the ``Twig_Filter_Function`` constructor is the name
205 As you can see, the ``prefix`` argument of the filter is passed as an extra
206 argument to the ``project_compute_rot13()`` function.
226 The ``Twig_Filter`` classes take options as their last argument. For instance,
232 Twig will then pass the current environment as the first argument to the
[all …]
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md256 argument of the default `Hoa\Stream\Stream` constructor; `true` to
265 Passing `null` as a second argument means: No context. Note that we
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dconstant.rst5 constant now accepts object instances as the second argument.
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md227 argument is of kind `Hoa\Event\Bucket`, then the method name will be deduced
236 The `attach` method on `Hoa\Event\Event` transforms its argument as an
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md95 - NullAwareVisitorInterface::isNull second argument [\#823](https://github.com/schmittjoh/serialize…
676 - Warning: Invalid argument supplied for foreach\(\) on getCurrentPath method [\#668](https://githu…
811 - Fix for a broken test: a missing \(incorrectly positioned\) argument [\#577](https://github.com/s…
978 - Document the handler $context argument [\#116](https://github.com/schmittjoh/serializer/pull/116)…
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Descape.rst28 an optional argument which defines the escaping strategy to use:
94 ``core`` extension instance. The first argument is the escaper name (to be
H A Djoin.rst5 The ``and`` argument was added in Twig 1.37 and 2.6.1.
H A Dreverse.rst22 them as well, pass ``true`` as an argument to the ``reverse`` filter:
H A Dslice.rst37 {# you can omit the first argument -- which is the same as 0 #}
40 {# you can omit the last argument -- which will select everything till the end #}
H A Dtrim.rst5 The ``side`` argument was added in Twig 1.32.
H A Durl_encode.rst8 The ``raw`` argument was removed in Twig 1.16.0. Twig now always encodes
30 ``raw`` argument was removed.)
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dblock.rst8 Support for the template argument was added in Twig 1.28.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dreplace_invalid_arg.test2 Exception for invalid argument type in replace call
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/
H A Dvarargs_argument.test2 macro with varargs argument
7 Twig\Error\SyntaxError: The argument "varargs" in macro "test" cannot be defined because the variab…

123456789