Test Failed
Push — master ( 45c182...1006b0 )
by Julien
03:21
created
src/TreeGen/DirectEliminationTreeGen.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,9 @@
 block discarded – undo
51 51
 
52 52
 
53 53
         //If there's already a match in the match array, then that means the next round is round 2, so increase the round number
54
-        if (count($this->brackets)) $roundNumber++;
54
+        if (count($this->brackets)) {
55
+            $roundNumber++;
56
+        }
55 57
         $countMatches = count($matches);
56 58
         //Create the first full round of teams, some may be blank if waiting on the results of a previous round
57 59
         for ($i = 0; $i < $countMatches; $i++) {
Please login to merge, or discard this patch.