Update Finding

This commit is contained in:
Nicolò P 2024-11-26 12:47:33 +01:00
parent 5e3b4da7c0
commit 6798fe4c38

View File

@ -21,9 +21,6 @@ class Finding implements \JsonSerializable
#[ORM\Column(length: 200, nullable: true, name: 'materia')] #[ORM\Column(length: 200, nullable: true, name: 'materia')]
private ?string $material = null; 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')] #[ORM\Column(length: 100, nullable: true, name: 'luogo_rinv')]
private ?string $place = null; private ?string $place = null;
@ -102,18 +99,6 @@ class Finding implements \JsonSerializable
return $this; return $this;
} }
public function getInventory(): ?string
{
return $this->inventory;
}
public function setInventory(?string $inventory): static
{
$this->inventory = $inventory;
return $this;
}
public function getPlace(): ?string public function getPlace(): ?string
{ {
return $this->place; return $this->place;
@ -277,7 +262,6 @@ class Finding implements \JsonSerializable
'object' => $this->object, 'object' => $this->object,
'material' => $this->material, 'material' => $this->material,
'measurements' => $this->measurements, 'measurements' => $this->measurements,
'inventory' => $this->inventory,
'place' => $this->place, 'place' => $this->place,
'year' => $this->year, 'year' => $this->year,
'dating' => $this->dating, 'dating' => $this->dating,