Completed
Push — master ( bb9054...1a0f7d )
by Tomáš
03:38
created
src/TournamentGenerator/Traits/WithTeams.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
 		$teams = [];
153 153
 		if ($this instanceof WithRoundsInterface) {
154 154
 			$rounds = $this->getRounds();
155
-			for ($i = count($rounds) - 1; $i >= 0; $i--) {
155
+			for ($i = count($rounds)-1; $i >= 0; $i--) {
156 156
 				foreach ($rounds[$i]->getTeams(true, $ordering) as $team) {
157 157
 					if (!isset($teams[$team->getId()])) {
158 158
 						$teams[$team->getId()] = $team;
Please login to merge, or discard this patch.