TRUE])] private bool $received = TRUE; #[ORM\Column(name: 'formerly_owned', type: 'boolean', nullable: FALSE, options: ['default' => TRUE])] private bool $formerlyOwned = TRUE; public function getId(): ?int { return $this->id; } public function isReceived(): ?bool { return $this->received; } public function setReceived(bool $received): self { $this->received = $received; return $this; } public function isFormerlyOwned(): ?bool { return $this->formerlyOwned; } public function setFormerlyOwned(bool $formerlyOwned): self { $this->formerlyOwned = $formerlyOwned; return $this; } }