Yeni tanıtılan özellik türü ipuçlarından yararlanmak için sınıf tanımlarımı güncelledim:
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; }
}
Ama varlığımı Doktrine kaydetmeye çalışırken şöyle bir hata alıyorum:
Başlatmadan önce yazılan özelliğe erişilmemelidir
Bu sadece $id
veya ile değil $createdAt
, aynı zamanda nullable özellikler olan $value
veya ile de olur $updatedAt
.