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