true])] private ?bool $visible = true; public function __construct() { } public function getId(): ?int { return $this->id; } public function getNumber(): ?float { return $this->number; } public function setNumber(float $number): self { $this->number = $number; return $this; } public function getManga(): ?Manga { return $this->manga; } public function setManga(?Manga $manga): self { $this->manga = $manga; return $this; } public function getVolume(): ?int { return $this->volume; } public function setVolume(?int $volume): static { $this->volume = $volume; return $this; } public function getTitle(): ?string { return $this->title; } public function setTitle(?string $title): static { $this->title = $title; return $this; } public function getLocalPath(): ?string { return $this->localPath; } public function setLocalPath(?string $localPath): static { $this->localPath = $localPath; return $this; } public function getExternalId(): ?string { return $this->externalId; } public function setExternalId(?string $externalId): static { $this->externalId = $externalId; return $this; } public function getCbzPath(): ?string { return $this->cbzPath; } public function setCbzPath(?string $cbzPath): static { $this->cbzPath = $cbzPath; return $this; } public function isVisible(): ?bool { return $this->visible; } public function setVisible(bool $visible): static { $this->visible = $visible; return $this; } }