Passed
Push — master ( 1d6548...c98942 )
by Julien
29:57
created
src/models/Competitor.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,9 @@
 block discarded – undo
58 58
      */
59 59
     private function defaultName()
60 60
     {
61
-        if ($this == null || $this->user == null) return "BYE";
61
+        if ($this == null || $this->user == null) {
62
+            return "BYE";
63
+        }
62 64
         return null;
63 65
     }
64 66
 
Please login to merge, or discard this patch.