Completed
Pull Request — master (#21)
by Anton
02:45 queued 16s
created
src/Middleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public static function __callStatic($name, $args)
52 52
     {
53
-        $class = __NAMESPACE__ . '\\Middleware\\' . ucfirst($name);
53
+        $class = __NAMESPACE__.'\\Middleware\\'.ucfirst($name);
54 54
 
55 55
         if (class_exists($class)) {
56 56
             switch (count($args)) {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      */
79 79
     public static function create(callable $factory)
80 80
     {
81
-        return function (RequestInterface $request, ResponseInterface $response, callable $next) use
81
+        return function(RequestInterface $request, ResponseInterface $response, callable $next) use
82 82
         (
83 83
             $factory
84 84
         ) {
Please login to merge, or discard this patch.