| 1 | <?php |
||
| 12 | class SameMatcher extends AbstractMatcher |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Match if the actual value is identical to the expected value using an === |
||
| 16 | * comparison. |
||
| 17 | * |
||
| 18 | * @param mixed $actual |
||
| 19 | * @return bool |
||
| 20 | */ |
||
| 21 | public function doMatch($actual) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | * |
||
| 29 | * @return TemplateInterface |
||
| 30 | */ |
||
| 31 | public function getDefaultTemplate() |
||
| 38 | } |
||
| 39 |