我正在使用php7的类型提示。所以我有以下代码
class Uni
{
/**
* @var Student
*
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Student")
* @ORM\JoinColumn(nullable=false)
*/
private $student;
function _construct(){
$this->student= new Student();
}
/**
* Set student
*
* @param \AppBundle\Entity\Student $student
*
* @return Uni
*/
public function setStudent (Student $student): Uni
{
$this->student= $student;
return $this;
}
/**
* Get student
*
* @return \AppBundle\Entity\Student
*/
public function getStudent(): Student
{
return $this->student;
}
}
现在当我尝试为Uni加载新表单时,我收到此错误
Type error: Return value of AppBundle\Entity\Uni::getStudent() must be an instance of AppBundle\Entity\Student, null returned
如何摆脱这个错误?我找到了一个可以为空的解决方案,它需要php 7.1。但是现在我必须坚持使用php 7.0。那我怎么解决这个问题呢?
答案 0 :(得分:4)
你的构造函数中有一个拼写错误,两个下划线必须在construct
之前出现。
function __construct() {
$this->student = new Student();
}
因此,$student
在创建对象时为null
。