Completed
Push — master ( 6c7852...c45dbb )
by De Cramer
14s
created
src/eXpansion/Framework/GameCurrencyBundle/Plugins/Gui/BillWindow.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@
 block discarded – undo
132 132
 
133 133
         $this->currencyService->sendBill(
134 134
             $bill,
135
-            function () use ($manialink, $bill) {
135
+            function() use ($manialink, $bill) {
136 136
                 $this->notifications->info("Successfully payed ".$bill->getAmount()."p to ".$bill->getReceiverlogin(),
137 137
                     [], "Success", 3500, $manialink->getUserGroup());
138 138
                 $this->closeManialink($manialink);
139 139
             },
140
-            function ($status) use ($manialink) {
140
+            function($status) use ($manialink) {
141 141
                 $this->notifications->error("Server said: ".$status,
142 142
                     [], "Error", 10500, $manialink->getUserGroup());
143 143
                 $this->closeManialink($manialink);
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Plugins/GuiHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
                 $size = strlen($mlData['ml']);
157 157
             }
158 158
 
159
-            $logins = array_filter($mlData['logins'], function ($value) {
159
+            $logins = array_filter($mlData['logins'], function($value) {
160 160
                 return $value != '';
161 161
             });
162 162
             if (!empty($logins)) {
Please login to merge, or discard this patch.