1 | <?php |
||
23 | class Closure extends MatcherAbstract |
||
24 | { |
||
25 | /** |
||
26 | * Check if the actual value matches the expected. |
||
27 | * |
||
28 | * @param mixed $actual |
||
29 | * @return bool |
||
30 | */ |
||
31 | 7 | public function match(&$actual) |
|
37 | |||
38 | /** |
||
39 | * Return a string representation of this Matcher |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | public function __toString() |
||
47 | } |
||
48 |