Completed
Branch master (e4eefc)
by Guillermo
04:20
created
src/PlayersCollection.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * @param Player[] ...$players
68
+     * @param Player $players
68 69
      */
69 70
     private function excludePlayers(...$players)
70 71
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     {
71 71
         foreach ($players as $mainPlayer) {
72 72
             foreach ($players as $player) {
73
-                if ($mainPlayer->id() == $player->id()){
73
+                if ($mainPlayer->id() == $player->id()) {
74 74
                     continue;
75 75
                 }
76 76
                 $this->excludePlayers[$mainPlayer->id()][] = $player->id();
Please login to merge, or discard this patch.