@@ -29,9 +29,6 @@ |
||
29 | 29 | /** |
30 | 30 | * Join several pieces into a path. |
31 | 31 | * |
32 | - * @param string $piece1 |
|
33 | - * @param string $piece2 |
|
34 | - * ... |
|
35 | 32 | * |
36 | 33 | * @return string |
37 | 34 | */ |
@@ -77,7 +77,7 @@ |
||
77 | 77 | */ |
78 | 78 | public static function create(callable $factory) |
79 | 79 | { |
80 | - return function (RequestInterface $request, ResponseInterface $response, callable $next) use ($factory) { |
|
80 | + return function(RequestInterface $request, ResponseInterface $response, callable $next) use ($factory) { |
|
81 | 81 | $middleware = $factory(); |
82 | 82 | |
83 | 83 | if ($middleware === false) { |