1 | <?php |
||
23 | class Not 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) |
|
36 | |||
37 | /** |
||
38 | * Return a string representation of this Matcher |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public function __toString() |
||
46 | } |
||
47 |