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