doctrine / data-fixtures

Doctrine2 ORM Data Fixtures Extensions
http://www.doctrine-project.org
MIT License
2.77k stars 224 forks source link

Not loading fixtures #379

Open malutanpetronel opened 2 years ago

malutanpetronel commented 2 years ago

Hi

I use doctrine/doctrine-fixtures-bundle": "^3.3", now is 3.4.0 and I try to load my fixtures from a data.yml file with:

bin/console doctrine:fixtures:load --em=blog --env=webnou --group=webnou

from a LoadUserData class

class LoadUserData extends Fixture implements ContainerAwareInterface, FixtureGroupInterface { /**

I have the data.yml specified above with the content:

include:

categorii.yml specified above

App\Blogger\BlogBundle\Entity\Cat:

root: name: ROOT

servicii_web: name: Web parent: '@root' ....

and 

namespace App\Blogger\BlogBundle\Entity;

use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; /**

but bin/console doctrine:fixtures:load --em=blog --env=webnou --group=webnou after answering yes for purge is not creating any row in the cat table :( I am lost for the moment and maybe you can provide a hint or an ideea...

malutanpetronel commented 2 years ago

I see now that private function loadFromIterator(Iterator $iterator): array is require_once $sourceFile; so is expecting a PHP file as long as I send a yml file