gpt4 book ai didi

php - 将 ContainerInterface 作为参数传递时出错

转载 作者:行者123 更新时间:2023-12-02 17:40:01 25 4
gpt4 key购买 nike

为什么在尝试获取 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;
}
...
}

最佳答案

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

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

您可能忘记了 @service_container

顺便说一句。请注意,注入(inject)整个容器是个坏主意。您应该只注入(inject)必要的服务。

关于php - 将 ContainerInterface 作为参数传递时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21850043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com