| 1 | <?php  | 
            ||
| 12 | class GreaterThanMatcher extends CountableMatcher  | 
            ||
| 13 | { | 
            ||
| 14 | /**  | 
            ||
| 15 |      * {@inheritdoc} | 
            ||
| 16 | *  | 
            ||
| 17 | * @return TemplateInterface  | 
            ||
| 18 | */  | 
            ||
| 19 | public function getDefaultTemplate()  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @return ArrayTemplate  | 
            ||
| 29 | */  | 
            ||
| 30 | public function getDefaultCountableTemplate()  | 
            ||
| 38 | |||
| 39 | /**  | 
            ||
| 40 | * Match that actual number is greater than the expected value.  | 
            ||
| 41 | *  | 
            ||
| 42 | * @param $number  | 
            ||
| 43 | * @return bool  | 
            ||
| 44 | */  | 
            ||
| 45 | protected function matchNumeric($number)  | 
            ||
| 49 | }  | 
            ||
| 50 |