我在"vendor\sylius\sylius\src\Sylius\Bundle\UiBundle\Controller\SecurityController.php"
中找到SecurityController
,否,我不会在"src\AppBundle\Controller\Ui"
中覆盖它并在app \ config \ services.yml中进行定义:
services:
sylius.controller.security:
class: AppBundle\Controller\Ui\SecurityController
现在,我收到此错误:
(2/2)FileLoaderLoadException 从资源“ ../ ../src/AppBundle/*“,但找不到!检查与/home/ftdev/host/shopex/b2c/unicef/app/config/services.yml中的资源一起使用的名称空间前缀(从“ / home / ftdev / host / shopex / b2c / unicef / app导入” /config/config.yml”)。
答案 0 :(得分:0)
如果没有相同的行,请尝试添加到config / services.yml:
services:
App\Controller\:
resource: '../src/Controller'
tags: ['controller.service_arguments']