public static function getDecimalFromString($string) { if (empty($string)) { return '0.0'; } return $string; }