Merge pull request #744 from jbruni/patch-1
Corrected PHP type for "decimal" mapping type
This commit is contained in:
commit
610e18949b
2 changed files with 3 additions and 3 deletions
|
@ -152,7 +152,7 @@ class EntityGenerator
|
||||||
Type::SMALLINT => 'integer',
|
Type::SMALLINT => 'integer',
|
||||||
Type::TEXT => 'string',
|
Type::TEXT => 'string',
|
||||||
Type::BLOB => 'string',
|
Type::BLOB => 'string',
|
||||||
Type::DECIMAL => 'float',
|
Type::DECIMAL => 'string',
|
||||||
Type::JSON_ARRAY => 'array',
|
Type::JSON_ARRAY => 'array',
|
||||||
Type::SIMPLE_ARRAY => 'array',
|
Type::SIMPLE_ARRAY => 'array',
|
||||||
);
|
);
|
||||||
|
|
|
@ -548,9 +548,9 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
|
||||||
)),
|
)),
|
||||||
array(array(
|
array(array(
|
||||||
'fieldName' => 'decimal',
|
'fieldName' => 'decimal',
|
||||||
'phpType' => 'float',
|
'phpType' => 'string',
|
||||||
'dbType' => 'decimal',
|
'dbType' => 'decimal',
|
||||||
'value' => 33.33
|
'value' => '12.34'
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue