Home
last modified time | relevance | path

Searched refs:argument (Results 101 – 125 of 219) sorted by path

123456789

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php105 return array_map(function (Node\ArgumentNode $argument) use ($typeHintReference) {
109 $php .= $argument->isNullable() ? '?' : '';
112 if ($hint = $argument->getTypeHint()) {
116 $php .= ' '.($argument->isPassedByReference() ? '&' : '');
118 $php .= $argument->isVariadic() ? '...' : '';
120 $php .= '$'.$argument->getName();
122 if ($argument->isOptional() && !$argument->isVariadic()) {
123 $php .= ' = '.var_export($argument->getDefault(), true);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php99 public function addArgument(ArgumentNode $argument) argument
101 $this->arguments[] = $argument;
190 $argument = '$'.$arg->getName();
193 $argument = '...'.$argument;
196 return $argument;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Exception/
H A DInvalidArgumentException.php16 * @param int $argument
22 public static function create($argument, $type, $value = null) argument
29 $argument,
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/
H A DMockObjectTest.php1026 ->with($this->callback(function ($argument) use (&$callCount) {
1027 return $argument === 'call_' . $callCount++;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php325 foreach ($node->childNodes as $argument) {
326 if ($argument instanceof DOMElement) {
327 if ($argument->tagName == 'file' ||
328 $argument->tagName == 'directory') {
329 … $arguments[] = $this->toAbsolutePath((string) $argument->textContent);
331 $arguments[] = PHPUnit_Util_XML::xmlToVariable($argument);
H A DInvalidArgumentHelper.php18 * @param int $argument
24 public static function factory($argument, $type, $value = null) argument
31 $argument,
H A DXML.php218 foreach ($arguments as $argument) {
219 if ($argument instanceof DOMElement) {
220 $constructorArgs[] = self::xmlToVariable($argument);
/plugin/findologicxmlexport/vendor/sebastian/resource-operations/build/
H A Dgenerate.php16 foreach ($arguments as $argument) {
17 if ($argument == 'resource') {
/plugin/findologicxmlexport/vendor/sebastian/version/
H A DREADME.md36 When a new release is prepared, the string that is passed to the constructor as the first argument
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Ddate.rst34 a DateTime instance. Do not set this argument to use current date.
40 as constructor argument. The returned string is formatted as ``diff.ago.XXX``
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG11 * allowed Traversable objects to be used in the "with" argument of the "include" and "embed" tags
47 * fixed using a Twig_TemplateWrapper instance as an argument to extends
51 * added a second argument to the join filter (last separator configuration)
142 * added `side` argument to `trim` to allow left or right trimming only.
174 * fixed block() function when used with a template argument
349 * fixed some error messages where the line was wrong (unknown variables or argument names)
370 * fixed macros when using an argument named like a PHP super global (like GET or POST)
444 * added support for object instances as the second argument of the constant test
472 * added support for object instances as the second argument of the constant function
672 * added missing preserveKeys argument to the reverse filter
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst69 generate (so, ``40`` is an argument of the filter, not the value we want to
148 The first argument passed to the ``\Twig\TwigFilter`` constructor is the name
166 (before the pipe ``|``) as the first argument and the extra arguments passed
182 argument::
191 environment as the first argument to the filter call::
205 the first argument to the filter call (or the second one if
241 last argument to the filter call as an array::
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 …]
H A Dapi.rst39 Notice that the second argument of the environment is an array of options.
85 options as the constructor second argument::
202 specify the namespace as the second argument (when not specified, these
221 When not passing the root path as a second argument, Twig uses ``getcwd()``
496 The policy object is the first argument of the sandbox constructor::
510 You can sandbox all templates by passing ``true`` as the second argument of
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dconvert_encoding.rst8 another. The first argument is the expected output charset and the second one
H A Ddate.rst51 ``core`` extension instance. The first argument is the default format for
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 Dsplit.rst15 You can also pass a ``limit`` argument:
31 chunks. Length is set by the ``limit`` argument (one character by default).
50 * ``limit``: The limit argument
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.
H A Dconstant.rst5 constant now accepts object instances as the second argument.

123456789