Passed
Push — devel-3.0 ( 67d9a6...e0263f )
by Rubén
04:37
created
lib/SP/Mvc/View/Template.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -360,7 +360,7 @@  discard block
 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
 
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
             return $this->vars->get($key, $default);
371 371
         };
372 372
 
373
-        $_getRoute = function ($path) use ($sk) {
373
+        $_getRoute = function($path) use ($sk) {
374 374
             return Bootstrap::$WEBURI . '/index.php?r=' . $path . '&sk=' . $sk;
375 375
         };
376 376
 
Please login to merge, or discard this patch.
lib/SP/Storage/Database/DatabaseUtil.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     public function checkDatabaseTables($dbName)
89 89
     {
90 90
         try {
91
-            $tables = implode(',', array_map(function ($value) {
91
+            $tables = implode(',', array_map(function($value) {
92 92
                 return '\'' . $value . '\'';
93 93
             }, self::$tables));
94 94
 
Please login to merge, or discard this patch.