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