Completed
Pull Request — master (#99)
by De Cramer
02:42
created
src/eXpansion/Bundle/Acme/Plugins/TotoPlugin.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
                 $this->mlFactory->create($login);
50 50
             }
51 51
         } else {
52
-               $this->mlFactory->destroy($this->playersGroup);
52
+                $this->mlFactory->destroy($this->playersGroup);
53 53
         }
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/eXpansion/Bundle/Menu/Plugins/Gui/MenuFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         WidgetFactoryContext $context,
37 37
         ManiaScriptFactory $menuScriptFactory,
38 38
         AdminGroups $adminGroupsHelper
39
-    ){
39
+    ) {
40 40
         parent::__construct($name, $sizeX, $sizeY, $posX, $posY, $context);
41 41
 
42 42
         $this->menuScriptFactory = $menuScriptFactory;
Please login to merge, or discard this patch.
src/eXpansion/Framework/Gui/Ui/Factory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use eXpansion\Framework\Gui\Components\uiTooltip;
14 14
 use eXpansion\Framework\Gui\Layouts\layoutLine;
15 15
 use eXpansion\Framework\Gui\Layouts\layoutRow;
16
-
17 16
 use eXpansion\Framework\Core\Exceptions\UnknownMethodException;
18 17
 use FML\Controls\Frame;
19 18
 
Please login to merge, or discard this patch.
src/eXpansion/Bundle/Acme/Plugins/Gui/WindowFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@
 block discarded – undo
75 75
         $manialink->addChild($quad);
76 76
 
77 77
         $input = $this->uiFactory->createInput("input1", "test text", 30);
78
-        $input->setPosition(90,-30);
78
+        $input->setPosition(90, -30);
79 79
         $manialink->addChild($input);
80 80
 
81 81
         $input = $this->uiFactory->createTextbox("input2", "test\ntest2\ntest3\nest4\ntest5", 5, 30);
82
-        $input->setPosition(130,-30);
82
+        $input->setPosition(130, -30);
83 83
 
84 84
         $manialink->addChild($input);
85 85
     }
Please login to merge, or discard this patch.