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