fix : wip cleanup
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

This commit is contained in:
2026-05-13 17:50:23 +02:00
parent b130d44054
commit b61321c7b7
10 changed files with 3 additions and 394 deletions

View File

@@ -44,11 +44,6 @@ class BovineMovement
#[ApiProperty(readableLink: true)]
private ?BuildingCase $buildingCase = null;
#[ORM\ManyToOne]
#[Groups(['bovine:read'])]
#[ApiProperty(readableLink: true)]
private ?Building $building = null;
#[ORM\Column(type: 'datetime_immutable')]
#[Groups(['bovine:read', 'bovine_movement:write'])]
private DateTimeImmutable $enteredAt;
@@ -86,18 +81,6 @@ class BovineMovement
return $this;
}
public function getBuilding(): ?Building
{
return $this->building;
}
public function setBuilding(?Building $building): static
{
$this->building = $building;
return $this;
}
public function getEnteredAt(): DateTimeImmutable
{
return $this->enteredAt;