Hello,
The configuration for Registering Fixtures
return array(
'data-fixture' => array(
'ModuleName_fixture' => __DIR__ . '/../src/ModuleName/Fixture',
)
);
does not work and the fixtures files are not loaded. It should be
return array(
'doctrine' => array(
'fixture' => array(
'ModuleName_fixture' => __DIR__ . '/../src/ModuleName/Fixture',
)
),
);
and then everything works fine.
Please update the documentation :)
Thanks!
Hello,
The configuration for Registering Fixtures
does not work and the fixtures files are not loaded. It should be
and then everything works fine.
Please update the documentation :)
Thanks!