Passed
Push — 3.0 ( 5e1ed3...5a5495 )
by Rubén
04:22
created
app/modules/web/Controllers/ControllerBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
             $this->session,
240 240
             $this->request,
241 241
             $this->configData,
242
-            function ($redirect) {
242
+            function($redirect) {
243 243
                 $this->router->response()
244 244
                     ->redirect($redirect)
245 245
                     ->send(true);
Please login to merge, or discard this patch.
app/modules/web/Controllers/ConfigManagerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
         $template->addTemplate('accounts');
176 176
         $template->assign('gdIsAvailable', $this->extensionChecker->checkGdAvailable());
177 177
 
178
-        $mimeTypesAvailable = array_map(function ($value) {
178
+        $mimeTypesAvailable = array_map(function($value) {
179 179
             return $value['type'];
180 180
         }, $this->dic->get(MimeTypes::class)->getMimeTypes());
181 181
 
Please login to merge, or discard this patch.
app/modules/web/Controllers/SimpleControllerBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             $this->session,
80 80
             $this->request,
81 81
             $this->configData,
82
-            function ($redirect) {
82
+            function($redirect) {
83 83
                 $this->router->response()
84 84
                     ->redirect($redirect)
85 85
                     ->send(true);
Please login to merge, or discard this patch.