Автоматическое подключение существует Начиная с Symfony 3.4, но с версией 4.x, он активирован по умолчанию.
Итак, все ваши классы внутри каталога / src общедоступны и настроены как службы.
Перейдите на / config / services.yaml , вы найдете этот код:
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.
# 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/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}'
Это означает, что ваш / src / Services / PhpDocxService.php файл может быть вызван App / Services / PhpDocxService
Решение, которое вы нашлиэто позвонить в вашу службу по $this->getContainer()->get('test_phpdocxService');