Passed
Push — devel-3.0 ( e32256...e49526 )
by Rubén
04:31
created
lib/SP/Mvc/View/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -360,7 +360,7 @@
 block discarded – undo
360 360
         $sk = $this->vars->get('sk');
361 361
 
362 362
         // An anonymous proxy function for handling views variables
363
-        $_getvar = function ($key, $default = null) {
363
+        $_getvar = function($key, $default = null) {
364 364
             if (DEBUG && !$this->vars->exists($key)) {
365 365
                 logger(sprintf(__('No es posible obtener la variable "%s"'), $key), 'WARN');
366 366
             }
Please login to merge, or discard this patch.
lib/SP/Html/DataGrid/Action/DataGridActionBase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     public function setRuntimeFilter($class, $method)
155 155
     {
156 156
         if (method_exists($class, $method)) {
157
-            $this->runtimeFilter = function ($filter) use ($method) {
157
+            $this->runtimeFilter = function($filter) use ($method) {
158 158
 //                new \ReflectionMethod($class, $method);
159 159
                 return $filter->{$method}();
160 160
             };
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     {
261 261
         if ($this->onClickArgs !== null) {
262 262
 
263
-            $args = array_map(function ($value) {
263
+            $args = array_map(function($value) {
264 264
                 return (!is_numeric($value) && $value !== 'this') ? '\'' . $value . '\'' : $value;
265 265
             }, $this->onClickArgs);
266 266
 
Please login to merge, or discard this patch.
app/modules/web/Controllers/Helpers/Account/AccountHistoryHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,6 +185,6 @@
 block discarded – undo
185 185
     protected function initialize()
186 186
     {
187 187
         $this->acl = $this->dic->get(Acl::class);
188
-        $this->accountHistoryService = $this->dic->get(AccountHistoryService::class);;
188
+        $this->accountHistoryService = $this->dic->get(AccountHistoryService::class); ;
189 189
     }
190 190
 }
191 191
\ No newline at end of file
Please login to merge, or discard this patch.
app/modules/web/Controllers/ConfigLdapController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
                 return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Sin cambios'));
98 98
             }
99 99
 
100
-            return $this->saveConfig($configData, $this->config, function () use ($eventMessage) {
100
+            return $this->saveConfig($configData, $this->config, function() use ($eventMessage) {
101 101
                 $this->eventDispatcher->notifyEvent('save.config.ldap', new Event($this, $eventMessage));
102 102
             });
103 103
         } catch (\Exception $e) {
Please login to merge, or discard this patch.