类型错误:返回值必须是实例,返回null

时间:2016-12-07 16:03:25

标签: php php-7 type-hinting

我正在使用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。那我怎么解决这个问题呢?

1 个答案:

答案 0 :(得分:4)

你的构造函数中有一个拼写错误,两个下划线必须在construct之前出现。

function __construct() {
    $this->student = new Student();
}

因此,$student在创建对象时为null