为了使这项工作,我需要做什么?
interface BaseServiceInterface {
public function getRecords();
}
class BaseService implements BaseServiceInterface{
public function getRecords(){
return "bla";
}
}
class SomeOtherService{
private $baseService;
public function __construct(BaseServiceInterface $baseService){
$this->baseService = $baseService;
}
}
我的service.yml看起来像这样:
base_service:
class: AppBundle\Service\BaseService
autowire: true
当我尝试运行时,我得到:
无法为AppBundle \ Service \ SomeOtherService自动装配参数1,因为类型提示类不存在(类BaseServiceInterface不存在)。
答案 0 :(得分:3)
autowire不能直接使用界面。 您需要创建服务别名才能使其正常工作。
services:
AppBundle\Service\BaseServiceInterface: '@AppBundle\Service\BaseService'
参考:https://symfony.com/doc/current/service_container/autowiring.html#working-with-interfaces