Lggr
Static Public Member Functions | List of all members
Prophecy\Argument Class Reference

Static Public Member Functions

static exact ($value)
 
static type ($type)
 
static which ($methodName, $value)
 
static that ($callback)
 
static any ()
 
static cetera ()
 
static allOf ()
 
static size ($value)
 
static withEntry ($key, $value)
 
static withEveryEntry ($value)
 
static containing ($value)
 
static withKey ($key)
 
static not ($value)
 
static containingString ($value)
 
static is ($value)
 
static approximate ($value, $precision=0)
 

Detailed Description

Argument tokens shortcuts.

Author
Konstantin Kudryashov ever..nosp@m.zet@.nosp@m.gmail.nosp@m..com

Member Function Documentation

◆ allOf()

static Prophecy\Argument::allOf ( )
static

Checks that argument matches all tokens

Parameters
mixed... a list of tokens
Returns
Token\LogicalAndToken

◆ any()

static Prophecy\Argument::any ( )
static

Matches any single value.

Returns
Token\AnyValueToken

◆ approximate()

static Prophecy\Argument::approximate (   $value,
  $precision = 0 
)
static

Check that argument is same value when rounding to the given precision.

Parameters
float$value
float$precision
Returns
Token\ApproximateValueToken

◆ cetera()

static Prophecy\Argument::cetera ( )
static

Matches all values to the rest of the signature.

Returns
Token\AnyValuesToken

◆ containing()

static Prophecy\Argument::containing (   $value)
static

Checks that argument array contains value

Parameters
mixed$value
Returns
Token\ArrayEntryToken

◆ containingString()

static Prophecy\Argument::containingString (   $value)
static
Parameters
string$value
Returns
Token\StringContainsToken

◆ exact()

static Prophecy\Argument::exact (   $value)
static

Checks that argument is exact value or object.

Parameters
mixed$value
Returns
Token\ExactValueToken

◆ is()

static Prophecy\Argument::is (   $value)
static

Checks that argument is identical value.

Parameters
mixed$value
Returns
Token\IdenticalValueToken

◆ not()

static Prophecy\Argument::not (   $value)
static

Checks that argument does not match the value|token.

Parameters
mixed$valueeither exact value or argument token
Returns
Token\LogicalNotToken

◆ size()

static Prophecy\Argument::size (   $value)
static

Checks that argument array or countable object has exact number of elements.

Parameters
integer$valuearray elements count
Returns
Token\ArrayCountToken

◆ that()

static Prophecy\Argument::that (   $callback)
static

Checks that argument matches provided callback.

Parameters
callable$callback
Returns
Token\CallbackToken

◆ type()

static Prophecy\Argument::type (   $type)
static

Checks that argument is of specific type or instance of specific class.

Parameters
string$typeType name (integer, string) or full class name
Returns
Token\TypeToken

◆ which()

static Prophecy\Argument::which (   $methodName,
  $value 
)
static

Checks that argument object has specific state.

Parameters
string$methodName
mixed$value
Returns
Token\ObjectStateToken

◆ withEntry()

static Prophecy\Argument::withEntry (   $key,
  $value 
)
static

Checks that argument array contains (key, value) pair

Parameters
mixed$keyexact value or token
mixed$valueexact value or token
Returns
Token\ArrayEntryToken

◆ withEveryEntry()

static Prophecy\Argument::withEveryEntry (   $value)
static

Checks that arguments array entries all match value

Parameters
mixed$value
Returns
Token\ArrayEveryEntryToken

◆ withKey()

static Prophecy\Argument::withKey (   $key)
static

Checks that argument array has key

Parameters
mixed$keyexact value or token
Returns
Token\ArrayEntryToken

The documentation for this class was generated from the following file: