1 | <?php |
||
26 | class MustBe extends MatcherAbstract |
||
27 | { |
||
28 | /** |
||
29 | * Check if the actual value matches the expected. |
||
30 | * |
||
31 | * @param mixed $actual |
||
32 | * @return bool |
||
33 | */ |
||
34 | 4 | public function match(&$actual) |
|
42 | |||
43 | /** |
||
44 | * Return a string representation of this Matcher |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | public function __toString() |
||
52 | } |
||
53 |