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