| 1 | <?php |
||
| 11 | class NumericityParser extends BaseParser |
||
| 12 | { |
||
| 13 | const NOT_A_NUMBER = 'NaN'; |
||
| 14 | const ATTR_NUMERIC_TYPE = 'nt'; |
||
| 15 | const ATTR_NUMERIC_VALUE = 'nv'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return Numericity |
||
| 19 | */ |
||
| 20 | protected function parse() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return NumericType |
||
| 36 | */ |
||
| 37 | private function parseNumericType() |
||
| 41 | } |