Completed
Pull Request — master (#210)
by
unknown
03:50
created
Framework/GameShootmania/DataProviders/PlayerExtraDataProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
                 $params['victim'],
24 24
                 $params['weapon'],
25 25
                 $params['distance'],
26
-                (object)$params['shooterposition'],
27
-                (object)$params['victimposition'],
26
+                (object) $params['shooterposition'],
27
+                (object) $params['victimposition'],
28 28
             ]);
29 29
     }
30 30
 
Please login to merge, or discard this patch.
src/eXpansion/Framework/GameShootmania/DataProviders/PlayerDataProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
             $params['damage'],
28 28
             $params['points'],
29 29
             $params['distance'],
30
-            (object)$params['shooterPosition'],
31
-            (object)$params['victimPosition'],
30
+            (object) $params['shooterPosition'],
31
+            (object) $params['victimPosition'],
32 32
         ]);
33 33
     }
34 34
 
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
             $params['victim'],
45 45
             $params['weapon'],
46 46
             $params['distance'],
47
-            (object)$params['shooterposition'],
48
-            (object)$params['victimposition'],
47
+            (object) $params['shooterposition'],
48
+            (object) $params['victimposition'],
49 49
         ]);
50 50
     }
51 51
 
Please login to merge, or discard this patch.
src/eXpansion/Bundle/Players/Plugins/Gui/PlayersWindow.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         }
149 149
 
150 150
 
151
-        $frame = Frame::create();;
151
+        $frame = Frame::create(); ;
152 152
         $frame->setPosition(120, -16);
153 153
 
154 154
         $manialink->setData("playerFrame", $frame);
@@ -358,23 +358,23 @@  discard block
 block discarded – undo
358 358
     {
359 359
 
360 360
         $actions = [
361
-            "mute" => (string)$this->actionFactory->createManialinkAction($manialink, [$this, 'callbackIgnore'],
361
+            "mute" => (string) $this->actionFactory->createManialinkAction($manialink, [$this, 'callbackIgnore'],
362 362
                 [
363 363
                     "login" => $login,
364 364
                 ]),
365
-            "kick" => (string)$this->actionFactory->createManialinkAction($manialink, [$this, 'callbackKick'],
365
+            "kick" => (string) $this->actionFactory->createManialinkAction($manialink, [$this, 'callbackKick'],
366 366
                 [
367 367
                     "login" => $login,
368 368
                 ]),
369
-            "ban" => (string)$this->actionFactory->createManialinkAction($manialink, [$this, 'callbackBan'],
369
+            "ban" => (string) $this->actionFactory->createManialinkAction($manialink, [$this, 'callbackBan'],
370 370
                 [
371 371
                     "login" => $login,
372 372
                 ]),
373
-            "black" => (string)$this->actionFactory->createManialinkAction($manialink, [$this, 'callbackBlack'],
373
+            "black" => (string) $this->actionFactory->createManialinkAction($manialink, [$this, 'callbackBlack'],
374 374
                 [
375 375
                     "login" => $login,
376 376
                 ]),
377
-            "guest" => (string)$this->actionFactory->createManialinkAction($manialink, [$this, 'callbackGuest'],
377
+            "guest" => (string) $this->actionFactory->createManialinkAction($manialink, [$this, 'callbackGuest'],
378 378
                 [
379 379
                     "login" => $login,
380 380
                 ]),
Please login to merge, or discard this patch.
src/eXpansion/Bundle/WidgetCurrentMap/Plugins/WidgetCurrentMap.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,11 +80,11 @@
 block discarded – undo
80 80
 
81 81
     }
82 82
 
83
-     /**
84
-     * @param Map $map
85
-     *
86
-     * @return void
87
-     */
83
+        /**
84
+         * @param Map $map
85
+         *
86
+         * @return void
87
+         */
88 88
     public function onBeginMap(Map $map)
89 89
     {
90 90
         $this->widget->update($this->players);
Please login to merge, or discard this patch.