无法使用ContainerAware命令功能调试Symfony

时间:2019-08-22 15:01:18

标签: php symfony docker xdebug

当我尝试扩展BaseCommand并在Xdebug中运行代码时,在Symfony 3.4中出现以下错误。

[docker://mysite:dev/]:php -dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=9001 -dxdebug.remote_host=172.17.0.1 /opt/project/website/src/App/Command/Affiliates/myCommand.php
Fatal error: Class 'AppBundle\Console\BaseCommand' not found 

我已经这样包含了它

use AppBundle\Console\BaseCommand;

该类扩展了BaseCommand抽象类

class myCommand extends BaseCommand { 
}

abstract class BaseCommand extends ContainerAwareCommand {       
} 

0 个答案:

没有答案