Added DoctrineFixturesBundle

This commit is contained in:
Javier Eguiluz
2017-05-14 12:12:06 +02:00
parent 12753492fd
commit a70fbde7e8
2 changed files with 21 additions and 0 deletions
@@ -0,0 +1,8 @@
{
"bundles": {
"Doctrine\\Bundle\\FixturesBundle\\DoctrineFixturesBundle": ["dev", "test"]
},
"copy-from-recipe": {
"src/": "%SRC_DIR%/"
}
}
@@ -0,0 +1,13 @@
<?php
namespace App\DataFixtures\ORM;
use Doctrine\Common\DataFixtures\FixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;
class Fixtures implements FixtureInterface
{
public function load(ObjectManager $manager)
{
}
}