为什么我在引入属性类型提示时突然收到“初始化前不得访问类型化属性”错误?
2022-08-30 07:32:33
我已经更新了我的类定义,以利用新引入的属性类型提示,如下所示:
class Foo {
private int $id;
private ?string $val;
private DateTimeInterface $createdAt;
private ?DateTimeInterface $updatedAt;
public function __construct(int $id) {
$this->id = $id;
}
public function getId(): int { return $this->id; }
public function getVal(): ?string { return $this->val; }
public function getCreatedAt(): ?DateTimeInterface { return $this->createdAt; }
public function getUpdatedAt(): ?DateTimeInterface { return $this->updatedAt; }
public function setVal(?string $val) { $this->val = $val; }
public function setCreatedAt(DateTimeInterface $date) { $this->createdAt = $date; }
public function setUpdatedAt(DateTimeInterface $date) { $this->updatedAt = $date; }
}
但是,当试图在教义上保存我的实体时,我得到了一个错误,说:
初始化前不得访问类型化属性
这不仅发生在 或 上,也发生在 or 上,它们是可为空的属性。$id
$createdAt
$value
$updatedAt