Ignoring eclipse specific files

This commit is contained in:
Robert Horlings
2016-02-15 14:50:10 +01:00
parent e83d45fce5
commit 28d880a7c4
2 changed files with 7 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ class AmountComma extends BasicConverter implements ConverterInterface
$value = str_replace(',', '.', $this->value);
if (is_numeric($value)) {
return floatval($value);
return $value;
}
return '0';