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

6
.gitignore vendored
View File

@ -4,3 +4,9 @@
storage/
.env.local
# Eclipse specific files
.buildpath
.project
.settings/

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';