web-dev-qa-db-fra.com

Impossible d'injecter des modèles sur le service Symfony 4

J'ai la classe suivante:

EmailNotification

namespace App\Component\Notification\RealTimeNotification;

use Symfony\Bridge\Twig\TwigEngine;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;

use App\Component\Notification\NotificationInterface;

class EmailNotification implements NotificationInterface
{   
    private $logNotification;

    public function __construct(LogNotification $logNotification, \Swift_Mailer $mailer,  EngineInterface $twigEngine)
    {
        $this->logNotification = $logNotification;
    }

    public function send(array $options): void
    {
        $this->logNotification->send($options);

        dump('Sent to email');
    }
}

J'ai la définition de service suivante sur mon yml:

app.email_notification:
    class: App\Component\Notification\RealTimeNotification\EmailNotification
    decorates: app.log_notification
    decoration_inner_name: app.log_notification.inner
    arguments: ['@app.log_notification.inner', '@mailer', '@templating']

Cependant, lorsque j'ai essayé d'exécuter mon application, elle génère une exception indiquant:

Impossible de connecter automatiquement le service "App\Component\Notification\RealTimeNotification\EmailNotification": l'argument "$ twigEngine" de la méthode "__construct ()" a le type "Symfony\Bundle\FrameworkBundle\Templating\EngineInterface" mais cette classe est introuvable.

Pourquoi est-ce si?

Merci!

10
iamjc015

Très probablement, vous n'avez pas de modèles inclus dans votre projet, dans Symfony 4, vous devez l'exiger explicitement:

composer require symfony/templating
6
MakG

Vous devez installer symfony/templating

composer require symfony/templating

changez un peu config/packages/framework.yaml

framework:
    templating:
        engines:
            - twig
28
Adrian Waler

J'ai réussi à le faire avec Twig Environnement et réponse HTTP

<?php

namespace App\Controller;

use Twig\Environment;
use Symfony\Component\HttpFoundation\Response;

class MyClass
{
    private $twig;

    public function __construct(Environment $twig)
    {
        $this->twig = $twig;
    }

    public function renderTemplateAction($msg)
    {
        return new Response($this->twig->render('myTemplate.html.twig'));
    }
}
8
Macr1408