Completed
Push — master ( 5eaaac...a29976 )
by Rubén
15:10
created
app/modules/web/Controllers/ConfigLdapController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
                 return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('No changes'));
103 103
             }
104 104
 
105
-            return $this->saveConfig($configData, $this->config, function () use ($eventMessage) {
105
+            return $this->saveConfig($configData, $this->config, function() use ($eventMessage) {
106 106
                 $this->eventDispatcher->notifyEvent('save.config.ldap', new Event($this, $eventMessage));
107 107
             });
108 108
         } catch (Exception $e) {
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
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             $configData->setMailRecipients($mailRecipients);
88 88
             $configData->setMailEvents(
89 89
                 $this->request->analyzeArray('mail_events',
90
-                    function ($items) {
90
+                    function($items) {
91 91
                         return ConfigUtil::eventsAdapter($items);
92 92
                     }, [])
93 93
             );
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         return $this->saveConfig(
118 118
             $configData,
119 119
             $this->config,
120
-            function () use ($eventMessage) {
120
+            function() use ($eventMessage) {
121 121
                 $this->eventDispatcher->notifyEvent(
122 122
                     'save.config.mail',
123 123
                     new Event($this, $eventMessage)
Please login to merge, or discard this patch.
lib/SP/Services/Account/AccountCryptService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
             $eventMessage = $this->processAccounts(
91 91
                 $this->accountService->getAccountsPassData(),
92
-                function (AccountPasswordRequest $request) {
92
+                function(AccountPasswordRequest $request) {
93 93
                     $this->accountService->updatePasswordMasterPass($request);
94 94
                 }
95 95
             );
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 
249 249
             $eventMessage = $this->processAccounts(
250 250
                 $this->accountHistoryService->getAccountsPassData(),
251
-                function (AccountPasswordRequest $request) {
251
+                function(AccountPasswordRequest $request) {
252 252
                     $request->hash = $this->request->getHash();
253 253
 
254 254
                     $this->accountHistoryService->updatePasswordMasterPass($request);
Please login to merge, or discard this patch.