1 | <?php |
||
23 | class Ducktype extends MatcherAbstract |
||
24 | { |
||
25 | /** |
||
26 | * Check if the actual value matches the expected. |
||
27 | * |
||
28 | * @param mixed $actual |
||
29 | * @return bool |
||
30 | */ |
||
31 | 2 | public function match(&$actual) |
|
43 | |||
44 | /** |
||
45 | * Return a string representation of this Matcher |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | public function __toString() |
||
53 | } |
||
54 |