From ff9a48448c271a32b3c36d4789a3c737c4ded485 Mon Sep 17 00:00:00 2001 From: thibaud-leclere Date: Mon, 30 Mar 2026 19:43:29 +0200 Subject: [PATCH] feat: add GameRow entity --- src/Entity/GameRow.php | 84 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/Entity/GameRow.php diff --git a/src/Entity/GameRow.php b/src/Entity/GameRow.php new file mode 100644 index 0000000..a1643f3 --- /dev/null +++ b/src/Entity/GameRow.php @@ -0,0 +1,84 @@ +id; + } + + public function getGame(): ?Game + { + return $this->game; + } + + public function setGame(Game $game): static + { + $this->game = $game; + + return $this; + } + + public function getActor(): ?Actor + { + return $this->actor; + } + + public function setActor(Actor $actor): static + { + $this->actor = $actor; + + return $this; + } + + public function getPosition(): int + { + return $this->position; + } + + public function setPosition(int $position): static + { + $this->position = $position; + + return $this; + } + + public function getRowOrder(): int + { + return $this->rowOrder; + } + + public function setRowOrder(int $rowOrder): static + { + $this->rowOrder = $rowOrder; + + return $this; + } +}