| 1 | <?php |
||
| 24 | class MultiArgumentClosure extends MatcherAbstract |
||
| 25 | { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Check if the actual value matches the expected. |
||
| 29 | * Actual passed by reference to preserve reference trail (where applicable) |
||
| 30 | * back to the original method parameter. |
||
| 31 | * |
||
| 32 | * @param mixed $actual |
||
| 33 | * @return bool |
||
| 34 | */ |
||
| 35 | 6 | public function match(&$actual) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Return a string representation of this Matcher |
||
| 43 | * |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function __toString() |
||
| 50 | } |