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/Gui/ScriptVariableUpdateFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     /**
94 94
      * Get a variable.
95 95
      *
96
-     * @param $variable
96
+     * @param string $variable
97 97
      *
98 98
      * @return Variable
99 99
      */
Please login to merge, or discard this patch.
src/eXpansion/Framework/Notifications/Services/Notifications.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,11 +121,11 @@
 block discarded – undo
121 121
 
122 122
 
123 123
     /**
124
-     * @param                    $prefix
125
-     * @param                    $title
126
-     * @param                    $message
124
+     * @param                    string $prefix
125
+     * @param                    string $title
126
+     * @param                    string $message
127 127
      * @param                    $params
128
-     * @param                    $duration
128
+     * @param                    integer $duration
129 129
      * @param  string|Group|null $group
130 130
      */
131 131
     protected function sendNotification($prefix, $title, $message, $params, $duration, $group = null)
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.