Symfony 3.4和Fixtures Bundle问题与捆绑版本3.0

时间:2018-05-09 11:59:16

标签: php symfony

我正在尝试从https://symfony.com/doc/master/bundles/DoctrineFixturesBundle/index.html

配置捆绑包

当我尝试运行命令时:

$ php bin/console doctrine:fixtures:load

得到错误: 在LoadDataFixturesDoctrineCommand.php第95行中:   无法找到任何要加载的灯具服务。

1 个答案:

答案 0 :(得分:2)

您需要更新(app / config / services.yml)

services:
        resource: '../../src/DataFixtures/*'

https://symfony.com/doc/master/bundles/DoctrineFixturesBundle/index.html

上面的教程中有其他问题

// src/DataFixtures/AppFixtures.php
namespace App\DataFixtures;

名称空间应为:

namespace DataFixtures;