| 1 | <?php |
||
| 15 | trait EqualMatcherDelegatable |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var \expect\matcher\ToEqual |
||
| 19 | */ |
||
| 20 | private $equalMatcher; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function match($actual) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function reportFailed(FailedMessage $message) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function reportNegativeFailed(FailedMessage $message) |
||
| 45 | } |
||
| 46 |