From 6798fe4c3850d05ecfc171100dbab675d44424b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20P?= Date: Tue, 26 Nov 2024 12:47:33 +0100 Subject: [PATCH] Update Finding --- src/Entity/Finding.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Entity/Finding.php b/src/Entity/Finding.php index 724d167..c2f8213 100644 --- a/src/Entity/Finding.php +++ b/src/Entity/Finding.php @@ -21,9 +21,6 @@ class Finding implements \JsonSerializable #[ORM\Column(length: 200, nullable: true, name: 'materia')] private ?string $material = null; - #[ORM\Column(length: 30, nullable: true, name: 'inventario')] - private ?string $inventory = null; - #[ORM\Column(length: 100, nullable: true, name: 'luogo_rinv')] private ?string $place = null; @@ -102,18 +99,6 @@ class Finding implements \JsonSerializable return $this; } - public function getInventory(): ?string - { - return $this->inventory; - } - - public function setInventory(?string $inventory): static - { - $this->inventory = $inventory; - - return $this; - } - public function getPlace(): ?string { return $this->place; @@ -277,7 +262,6 @@ class Finding implements \JsonSerializable 'object' => $this->object, 'material' => $this->material, 'measurements' => $this->measurements, - 'inventory' => $this->inventory, 'place' => $this->place, 'year' => $this->year, 'dating' => $this->dating,