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