Passed
Push — 3.0 ( d95117...84800e )
by Rubén
03:15
created
lib/SP/Mvc/View/Template.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
         $sk = $this->vars->get('sk');
362 362
 
363 363
         // An anonymous proxy function for handling views variables
364
-        $_getvar = function ($key, $default = null) {
364
+        $_getvar = function($key, $default = null) {
365 365
             if (DEBUG && !$this->vars->exists($key)) {
366 366
                 logger(sprintf(__('Unable to retrieve "%s" variable'), $key), 'WARN');
367 367
 
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
             return $this->vars->get($key, $default);
372 372
         };
373 373
 
374
-        $_getRoute = function ($path) use ($sk) {
374
+        $_getRoute = function($path) use ($sk) {
375 375
             $uri = new Uri(Bootstrap::$WEBROOT . Bootstrap::$SUBURI);
376 376
             $uri->addParam('r', $path);
377 377
             $uri->addParam('sk', $sk);
Please login to merge, or discard this patch.
app/modules/web/Controllers/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 
64 64
             $this->checkForwarded();
65 65
 
66
-            $redirector = function ($route) use ($from) {
66
+            $redirector = function($route) use ($from) {
67 67
                 $uri = new Uri(Bootstrap::$SUBURI);
68 68
                 $uri->addParam('r', $route);
69 69
 
Please login to merge, or discard this patch.