From 50a97ad5724aa982bbd65d1ff2c8fbcb1d314140 Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Thu, 20 Jun 2019 14:41:46 +0200 Subject: [PATCH] Renamed GameExists to gameExists Normalization --- src/Tournament.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tournament.php b/src/Tournament.php index 7a69274..e631b84 100644 --- a/src/Tournament.php +++ b/src/Tournament.php @@ -237,7 +237,7 @@ class Tournament $cache[] = $pairing; } else { // Check if game already exists - if (!$this->GameExists($game, $round)) { + if (!$this->gameExists($game, $round)) { $this->AddGame($game, $round); } } @@ -252,7 +252,7 @@ class Tournament * @param int $round * @return bool */ - public function GameExists(Game $game, int $round = -1): bool + public function gameExists(Game $game, int $round = -1): bool { $search = [ $round ]; if ($round == -1) {