From ea365c9e83553698e115e07fe08e73ce3de16b9c Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Thu, 20 Jun 2019 13:52:37 +0200 Subject: [PATCH] Removed Round methods from Game Probably follow-up to 8fe7bc73ee28fe1cbe572e3ccec97fe40b679188 --- src/Game.php | 72 ---------------------------------------------------- 1 file changed, 72 deletions(-) diff --git a/src/Game.php b/src/Game.php index f14a1c0..367645e 100644 --- a/src/Game.php +++ b/src/Game.php @@ -129,76 +129,4 @@ class Game $this->result = $result; return $this; } - - /** - * @return DateTime - */ - public function getDate(): DateTime - { - return $this->date; - } - - /** - * @param DateTime $date - * @return Round - */ - public function setDate(DateTime $date): Round - { - $this->date = $date; - return $this; - } - - /** - * @return Game[] - */ - public function getGames(): array - { - return $this->games; - } - - /** - * @param Game[] $games - * @return Round - */ - public function setGames(array $games): Round - { - $this->games = $games; - return $this; - } - - /** - * @return int - */ - public function getRoundNo(): int - { - return $this->roundNo; - } - - /** - * @param int $roundNo - * @return Round - */ - public function setRoundNo(int $roundNo): Round - { - $this->roundNo = $roundNo; - return $this; - } - - /** - * @return Pairing[] - */ - public function getPairings(): array - { - return $this->pairings; - } - - /** - * @param Pairing[] $pairings - * @return Round - */ - public function setPairings(array $pairings): Round - { - $this->pairings = $pairings; - return $this; - } }