symfony4: ошибка команды консоли после добавления eventsubscriber

В моем приложении я добавил eventSubscriber, который будет выполняться при каждом запросе, чтобы собрать некоторые данные для использования в меню:

namespace App\EventSubscriber;

use App\Entity\Journey;
use App\Entity\User;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents;

/**
 * Class JourneymenuSubscriber
 * @package App\EventSubscriber
 */
class JourneymenuSubscriber implements EventSubscriberInterface
{

    /**
     * @var ContainerInterface
     */
    protected $container;
    /**
     * @var \Twig_Environment
     */
    protected $twig;

    /**
     * JourneymenuSubscriber constructor.
     * @param ContainerInterface $container
     * @param \Twig_Environment $twig
     */
    public function __construct(ContainerInterface $container, \Twig_Environment $twig)
    {
        $this->container = $container;
        $this->twig = $twig;
    }

    /**
     * @param FilterControllerEvent $event
     */
    public function onKernelController(FilterControllerEvent $event)
    {
        //Get the journeys of the main user
        $doctrine = $this->container->get('doctrine');
        $repository = $doctrine->getRepository(Journey::class);
        $user = $doctrine->getRepository(User::class)->findBy(['isHomepageUser' => true]);
        $journeys = $repository->findBy(['user' => $user]);

        $this->twig->addGlobal('menu_user', $user);
        $this->twig->addGlobal('menu_journeys', $journeys);
    }

    /**
     * @return array
     */
    public static function getSubscribedEvents()
    {
        return array(
            KernelEvents::CONTROLLER => 'onKernelController',
        );
    }
}

Код работает как шарм, но после добавления этого кода я получаю ошибки в каждой консольной команде:

В строке 168 FileLoader.php:

Ожидается, что автозагрузчик определит класс "App\EventSubscriber\JourneymenuSubscriber" в файле "E:\dockercontainers\Travelsite\travelsite\vendor\composer/../../src\EventSubscriber\JourneymenuSubscriber.php". Файл был найден, но класса в нем не было, вероятно, имя класса или пространство имен содержит опечатку в E:\dockercontainers\Travelsite\travelsite\config/s ervices.yaml (загружается в ресурс "E: \ dockercontainers \ Travelsite" \ travelsite \ Config/services.yaml").

Пространство имен и имя класса кажутся правильными, иначе я бы не предположил, что они работали бы со стороны сети. Я думаю, я что-то упускаю В моем services.yaml нет ничего особенного, все так и вышло:

# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters:
    locale: 'en'

services:
    # default configuration for services in *this* file
    _defaults:
        autowire: true      # Automatically injects dependencies in your services.
        autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
        public: false       # Allows optimizing the container by removing unused services; this also means
                            # fetching services directly from the container via $container->get() won't work.
                            # The best practice is to be explicit about your dependencies anyway.

    # makes classes in src/ available to be used as services
    # this creates a service per class whose id is the fully-qualified class name
    App\:
        resource: '../src/*'
        exclude: '../src/{Entity,Migrations,Tests,Kernel.php}'

    # controllers are imported separately to make sure services can be injected
    # as action arguments even if you don't extend any base controller class
    App\Controller\:
        resource: '../src/Controller'
        tags: ['controller.service_arguments']

    # add more service definitions when explicit configuration is needed
    # please note that last definitions always *replace* previous ones

0 ответов

Другие вопросы по тегам