image; } public function setImage(?Image $image): static { $this->image = $image; return $this; } public function getRepository(): ?ImageRepository { return $this->repository; } public function setRepository(?ImageRepository $repository): static { $this->repository = $repository; return $this; } public function getStatus(): ?string { return $this->status; } public function setStatus(string $status): static { $this->status = $status; return $this; } public function getCreated(): ?bool { return $this->created; } public function setCreated(?bool $created): static { $this->created = $created; return $this; } public function getImageFullsum(): ?string { return $this->imageFullsum; } public function setImageFullsum(?string $imageFullsum): static { $this->imageFullsum = $imageFullsum; return $this; } }