re-enable fixtures with sf3

This commit is contained in:
Julien Fastré 2018-05-04 22:52:05 +02:00
parent d78eb72777
commit 835b36f281
2 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@ class ChillReportExtension extends Extension implements PrependExtensionInterfac
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml'); $loader->load('services.yml');
$loader->load('services/fixtures.yml');
} }
/** /**

View File

@ -0,0 +1,4 @@
services:
Chill\ReportBundle\DataFixtures\ORM\:
resource: ../../../DataFixtures/ORM
tags: [ 'doctrine.fixture.orm' ]