| 1 | <?php |
||
| 23 | class DoubleHelper { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Parse a string. |
||
| 27 | * |
||
| 28 | * @param string $value The string value. |
||
| 29 | * @return double Returns the double represented by the string value. |
||
| 30 | * @throws DoubleArgumentException Throws a double argument exception if the string value does not represent a double. |
||
| 31 | */ |
||
| 32 | public static function parseString($value) { |
||
| 39 | |||
| 40 | } |
||
| 41 |