当我尝试扩展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 {
}