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