Tôi đã cập nhật các định nghĩa lớp của mình để sử dụng các gợi ý loại thuộc tính mới được giới thiệu, như thế này:
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; }
}
Nhưng khi cố gắng lưu thực thể của tôi trên Học thuyết, tôi gặp lỗi khi nói:
Thuộc tính gõ không được truy cập trước khi khởi tạo
Điều này không chỉ xảy ra với $id
hoặc $createdAt
, mà còn xảy ra với $value
hoặc $updatedAt
, đó là các thuộc tính nullable.