1 | <?php |
||
13 | class GreaterThanOrEqualMatcher extends CountableMatcher |
||
14 | { |
||
15 | /** |
||
16 | * Match that the actual number is greater than or equal |
||
17 | * to the expected value. |
||
18 | * |
||
19 | * @param $number |
||
20 | * @return bool |
||
21 | */ |
||
22 | protected function matchNumeric($number) |
||
26 | |||
27 | /** |
||
28 | * Return a default template if none was set. |
||
29 | * |
||
30 | * @return TemplateInterface |
||
31 | */ |
||
32 | public function getDefaultTemplate() |
||
39 | |||
40 | /** |
||
41 | * Return a default template for when a countable has been set. |
||
42 | * |
||
43 | * @return TemplateInterface |
||
44 | */ |
||
45 | public function getDefaultCountableTemplate() |
||
53 | } |
||
54 |