Searched refs:Argument (Results 1 – 25 of 41) sorted by relevance
12
14 use Prophecy\Argument; alias43 * @param null|Argument\ArgumentsWildcard|array $arguments111 * @param array|Argument\ArgumentsWildcard $arguments120 $arguments = new Argument\ArgumentsWildcard($arguments);123 if (!$arguments instanceof Argument\ArgumentsWildcard) {464 * @return Argument\ArgumentsWildcard
222 $user->setName(new Prophecy\Argument\Token\ExactValueToken('everzet'));226 `Prophecy\Argument\Token\TokenInterface` and tell Prophecy how to compare real arguments228 shortcut class `Prophecy\Argument`, which you can use to create tokens like that:231 use Prophecy\Argument;233 $user->setName(Argument::exact('everzet'));239 - `IdenticalValueToken` or `Argument::is($value)` - checks that the argument is identical to a spec…240 - `ExactValueToken` or `Argument::exact($value)` - checks that the argument matches a specific value241 - `TypeToken` or `Argument::type($typeOrClass)` - checks that the argument matches a specific type …243 - `ObjectStateToken` or `Argument::which($method, $value)` - checks that the argument method returns245 - `CallbackToken` or `Argument::that(callback)` - checks that the argument matches a custom callback[all …]
13 * [fixed] Argument::containingString throwing error when called with non-string (@dcabrejas)139 * Added IdenticalValueToken and Argument::is (thanks @florianv)161 * Added ArrayEveryEntryToken and Argument::withEveryEntry() (thanks @adrienbrault)163 * Added StringContainToken and Argument::containingString() (thanks @peterjmit)172 * Add support for interfaces into TypeToken and Argument::type() (thanks @sstok)
23 protected $argumentsType = Argument::class;73 * @param Argument[]80 * @return Argument[]
20 class Argument extends \Google\Model class96 class_alias(Argument::class, 'Google_Service_Bigquery_Argument');
17 use Prophecy\Argument\ArgumentsWildcard;18 use Prophecy\Argument\Token\AnyValuesToken;
14 use Prophecy\Argument\Token;21 class Argument class
12 namespace Prophecy\Argument\Token;
35 * @param null|Argument\ArgumentsWildcard|array $arguments
12 namespace Prophecy\Argument;
15 use Prophecy\Argument\ArgumentsWildcard;