Home
last modified time | relevance | path

Searched refs:argument (Results 151 – 175 of 219) sorted by last modified time

123456789

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DAnyValuesToken.php28 public function scoreArgument($argument) argument
H A DExactValueToken.php52 public function scoreArgument($argument) argument
54 if (is_object($argument) && is_object($this->value)) {
56 $argument, $this->value
60 $comparator->assertEquals($argument, $this->value);
66 if (is_object($argument) xor is_object($this->value)) {
67 if (is_object($argument) && !method_exists($argument, '__toString')) {
74 } elseif (is_numeric($argument) && is_numeric($this->value)) {
76 } elseif (gettype($argument) !== gettype($this->value)) {
80 return $argument == $this->value ? 10 : false;
H A DIdenticalValueToken.php46 public function scoreArgument($argument) argument
48 return $argument === $this->value ? 11 : false;
H A DTokenInterface.php28 public function scoreArgument($argument); argument
H A DLogicalAndToken.php28 foreach ($arguments as $argument) {
29 if (!$argument instanceof TokenInterface) {
30 $argument = new ExactValueToken($argument);
32 $this->tokens[] = $argument;
43 public function scoreArgument($argument) argument
51 $score = $token->scoreArgument($argument);
H A DLogicalNotToken.php39 public function scoreArgument($argument) argument
41 return false === $this->token->scoreArgument($argument) ? 4 : false;
H A DObjectStateToken.php54 * @param mixed $argument
58 public function scoreArgument($argument) argument
60 if (is_object($argument) && method_exists($argument, $this->name)) {
61 $actual = call_user_func(array($argument, $this->name));
75 if (is_object($argument) && property_exists($argument, $this->name)) {
76 return $argument->{$this->name} === $this->value ? 8 : false;
H A DStringContainsToken.php33 public function scoreArgument($argument) argument
35 return is_string($argument) && strpos($argument, $this->value) !== false ? 6 : false;
H A DTypeToken.php47 public function scoreArgument($argument) argument
51 return call_user_func($checker, $argument) ? 5 : false;
54 return $argument instanceof $this->type ? 5 : false;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DReflectionClassNewInstancePatch.php43 foreach ($node->getMethod('newInstance')->getArguments() as $argument) {
44 $argument->setDefault(null);
H A DDisableConstructorPatch.php51 foreach ($constructor->getArguments() as $argument) {
52 $argument->setDefault(null);
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DMethod.php139 $argument = explode(' ', self::stripRestArg(trim($argument)), 2);
147 $argument[1] = self::stripRestArg($argument[1]);
201 $arguments[] = $argument['type'] . ' $' . $argument['name'];
213 foreach ($arguments as &$argument) {
214 if (is_string($argument)) {
215 $argument = [ 'name' => $argument ];
218 if (! isset($argument['type'])) {
222 $keys = array_keys($argument);
236 if (strpos($argument, '...') === 0) {
237 $argument = trim(substr($argument, 3));
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md153 class as second argument and the Resolvers will take this into account when resolving partial names.
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md90 * Enhance exception for invalid argument to ThrowPromise (thanks @Tobion)
102 * Fixed bug in closure-based argument tokens (#181)
110 * Add ability to specify which argument is returned in willReturnArgument (thanks @coderbyheart)
156 …* Added a clss patch for ReflectionClass::newInstance to make its argument optional consistently (…
/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/phpunit/src/Util/
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/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 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
/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/ckgdoku/ckeditor/
H A DLICENSE.md533 the facility, other than as an argument passed when the facility
H A DCHANGES.md20 …/#!/api/CKEDITOR.editor-method-getCommandKeystroke) now also accepts a command name as an argument.
415 * [#13300](http://dev.ckeditor.com/ticket/13300): Fixed: The `internalCommit` argument in the [Imag…
505 …om/#!/api/CKEDITOR.plugins.widget)'s startup data as a widget command's argument. Thanks to [Rebro…
864 …thod-getRanges) method does not override cached ranges when used with the `onlyEditables` argument.
1013 …le which will be applied to all elements you need to pass an additional argument to the [`filter.a…

123456789