将ContainerInterface作为参数传递时出错

时间:2014-02-18 09:56:25

标签: php symfony service containers

为什么我在尝试获取ContainerInterface时出现此错误:

ERROR - exception 'ErrorException' with message 'Catchable Fatal Error: Argument 5 passed to Project\InvitationsBundle\Invitations::__construct() must implement interface Symfony\Component\DependencyInjection\ContainerInterface, none given, called in /www/project/app/cache/dev/appDevDebugProjectContainer.php on line 1709 and defined in /www/project/src/Project/InvitationsBundle/Invitations.php line 23' 

ContainerInterface添加到构造方法时会出现错误:

<?php

namespace Pro\InvitationsBundle;

use Pro\CommunityBundle\Entity\Community;
use Pro\InvitationsBundle\Entity\Invitation;
use Doctrine\Bundle\DoctrineBundle\Registry;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
use Pro\UserBundle\Entity\User;
use Symfony\Component\DependencyInjection\ContainerInterface;

class Invitations
{
    private $mailer;
    private $translator;
    private $templating;
    private $doctrine;
    private $container;


    function __construct(\Swift_Mailer $mailer, TranslatorInterface $translator, EngineInterface $templating,
        Registry $doctrine, ContainerInterface $container)
    {
        $this->mailer = $mailer;
        $this->translator = $translator;
        $this->templating = $templating;
        $this->doctrine = $doctrine;
        $this->container = $container;
    }
    ...
}

1 个答案:

答案 0 :(得分:5)

可能您的服务定义错误。您应该注入所有Invitations个参数,例如:

invitations:
    class: Redconvive\InvitationsBundle\Invitations
    arguments: [@mailer, @translator, @templating, @doctrine, @service_container]

您可能忘了 @service_container

顺便说一下。请注意,注入整个容器是个坏主意。你应该只注入必要的服务。