Passed
Push — devel-3.0 ( 5647ad...19c8c8 )
by Rubén
04:03
created
app/modules/web/Controllers/ConfigGeneralController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $syslogPort = $this->request->analyzeInt('remotesyslog_port', 0);
86 86
 
87 87
         $configData->setLogEnabled($logEnabled);
88
-        $configData->setLogEvents($this->request->analyzeArray('log_events', function ($items) {
88
+        $configData->setLogEvents($this->request->analyzeArray('log_events', function($items) {
89 89
             return ConfigUtil::eventsAdapter($items);
90 90
         }, []));
91 91
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
             $eventMessage->addDescription(__u('Auth Basic disabled'));
167 167
         }
168 168
 
169
-        return $this->saveConfig($configData, $this->config, function () use ($eventMessage) {
169
+        return $this->saveConfig($configData, $this->config, function() use ($eventMessage) {
170 170
             $this->eventDispatcher->notifyEvent('save.config.general', new Event($this, $eventMessage));
171 171
         });
172 172
     }
Please login to merge, or discard this patch.
app/modules/web/Controllers/ConfigAccountController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
         }
107 107
 
108 108
 
109
-        return $this->saveConfig($configData, $this->config, function () use ($eventMessage) {
109
+        return $this->saveConfig($configData, $this->config, function() use ($eventMessage) {
110 110
             $this->eventDispatcher->notifyEvent('save.config.account', new Event($this, $eventMessage));
111 111
         });
112 112
     }
Please login to merge, or discard this patch.
app/modules/web/Controllers/ConfigWikiController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
             $eventMessage->addDescription(__u('DokuWiki disabled'));
109 109
         }
110 110
 
111
-        return $this->saveConfig($configData, $this->config, function () use ($eventMessage) {
111
+        return $this->saveConfig($configData, $this->config, function() use ($eventMessage) {
112 112
             $this->eventDispatcher->notifyEvent('save.config.wiki', new Event($this, $eventMessage));
113 113
         });
114 114
     }
Please login to merge, or discard this patch.