1

How to use factory to create services with symfony2.7 ?

#service.yml
#in symfony 2.6
my.repository.photo:
    class: My\AppBundle\Repository\PhotoRepository
    factory_method: getRepository
    factory_service: doctrine
    arguments: [My\AppBundle\Entity\Photo]

#I have some errors like this
Deprecated: Symfony\Component\DependencyInjection\Definition::setFactoryMethod(getRepository) is deprecated since version 2.6 and will be removed in 3.0. Use Definition::setFactory() instead. in /my/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Definition.php on line 137
Deprecated: Symfony\Component\DependencyInjection\Definition::setFactoryService(doctrine) is deprecated since version 2.6 and will be removed in 3.0. Use Definition::setFactory() instead. in my/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Definition.php on line 208

How to use "setFactory" method now in my case ? Docs: http://symfony.com/doc/master/components/dependency_injection/factories.html

Thanks!

4

1 回答 1

2

我认为相关文档很清楚。试试这个配置:

my.repository.photo:
    class: My\AppBundle\Repository\PhotoRepository
    factory: ["@doctrine", getRepository]
    arguments: [My\AppBundle\Entity\Photo]

弃用的错误是为即将推出的 Symfony 3.0 做准备。某些功能(如 factory_service|factory_method)将被删除。这是一个线程,如果您真的不需要它,您可以在其中找到禁用 Symfony 已弃用错误的解决方案。

于 2015-06-05T08:21:36.003 回答