Passed
Push — 3.0 ( afdfa8...13e12b )
by Rubén
03:47
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
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         return $this->saveConfig(
170 170
             $configData,
171 171
             $this->config,
172
-            function () use ($eventMessage) {
172
+            function() use ($eventMessage) {
173 173
                 $this->eventDispatcher->notifyEvent(
174 174
                     'save.config.general',
175 175
                     new Event($this, $eventMessage)
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
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         return $this->saveConfig(
109 109
             $configData,
110 110
             $this->config,
111
-            function () use ($eventMessage) {
111
+            function() use ($eventMessage) {
112 112
                 $this->eventDispatcher->notifyEvent(
113 113
                     'save.config.account',
114 114
                     new Event($this, $eventMessage)
Please login to merge, or discard this patch.
app/modules/web/Controllers/ConfigMailController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             $configData->setMailSecurity($mailSecurity);
83 83
             $configData->setMailFrom($mailFrom);
84 84
             $configData->setMailRecipients($mailRecipients);
85
-            $configData->setMailEvents($this->request->analyzeArray('mail_events', function ($items) {
85
+            $configData->setMailEvents($this->request->analyzeArray('mail_events', function($items) {
86 86
                 return ConfigUtil::eventsAdapter($items);
87 87
             }));
88 88
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         return $this->saveConfig(
112 112
             $configData,
113 113
             $this->config,
114
-            function () use ($eventMessage) {
114
+            function() use ($eventMessage) {
115 115
                 $this->eventDispatcher->notifyEvent(
116 116
                     'save.config.mail',
117 117
                     new Event($this, $eventMessage)
Please login to merge, or discard this patch.