Base
Class Base
Table of Contents
Methods
- addChecker() : $this
- Add checker.
- addResponseModifier() : $this
- Add response modifier.
- call() : mixed
- Call.
- getCheckers() : array<string|int, mixed>
- Get checkers.
- getResponseModifiers() : array<string|int, mixed>
- Get response modifiers.
- setCheckers() : $this
- Set checkers.
- setResponseModifiers() : $this
- Set response modifiers.
Methods
addChecker()
Add checker.
public
addChecker(callable $checker) : $this
Parameters
- $checker : callable
-
Checker.
Tags
Return values
$thisaddResponseModifier()
Add response modifier.
public
addResponseModifier(callable $modifier) : $this
Parameters
- $modifier : callable
-
Modifier.
Tags
Return values
$thiscall()
Call.
public
static call(callable $callee[, array<string|int, mixed> $parameters = array() ]) : mixed
Parameters
- $callee : callable
-
Callee.
- $parameters : array<string|int, mixed> = array()
-
Parameters.
Tags
getCheckers()
Get checkers.
public
getCheckers() : array<string|int, mixed>
Return values
array<string|int, mixed>getResponseModifiers()
Get response modifiers.
public
getResponseModifiers() : array<string|int, mixed>
Return values
array<string|int, mixed>setCheckers()
Set checkers.
public
setCheckers(array<string|int, callable> $checkers) : $this
Parameters
- $checkers : array<string|int, callable>
-
Checkers.
Return values
$thissetResponseModifiers()
Set response modifiers.
public
setResponseModifiers(array<string|int, callable> $modifiers) : $this
Parameters
- $modifiers : array<string|int, callable>
-
Modifiers.