Browse Source

Fixing style errors.

stickler-ci 8 years ago
parent
commit
385a35918a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Routing/Router.php

+ 1 - 1
src/Routing/Router.php

@@ -228,7 +228,7 @@ class Router
 
         if (preg_match($regex, $defaults, $matches)) {
             unset($matches[0]);
-            $matches = array_filter($matches, function($value) {
+            $matches = array_filter($matches, function ($value) {
                 return $value !== '' && $value !== '::';
             });