| 1 | <?php |
||
| 23 | class AnyOf extends MatcherAbstract |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Check if the actual value does not match the expected (in this |
||
| 27 | * case it's specifically NOT expected). |
||
| 28 | * |
||
| 29 | * @param mixed $actual |
||
| 30 | * @return bool |
||
| 31 | */ |
||
| 32 | 2 | public function match(&$actual) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Return a string representation of this Matcher |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function __toString() |
||
| 51 | } |
||
| 52 |