Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.2.3
-
Fix Version/s: None
-
Component/s: Data Fixtures
-
Labels:None
Description
File Doctrine/Data/Import.php, line #80
if (end($e) == 'yml')
So, if the file is a .json (for exemple), it will be impossible to load it, even if we have specified "json" as format parameter.
And it sucks.
The fix would just be to change the line to :
if (end($e) == $this->getFormat())