Passed
Push — develop ( cc669a...c4d599 )
by nguereza
12:37
created
src/MiddlewareResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * @throws MiddlewareResolverException if the handler is not valid.
80 80
      */
81 81
     public function resolve(
82
-        string|MiddlewareInterface|RequestHandlerInterface|callable $handler
82
+        string | MiddlewareInterface | RequestHandlerInterface | callable $handler
83 83
     ): MiddlewareInterface {
84 84
         if ($handler instanceof MiddlewareInterface) {
85 85
             return $handler;
Please login to merge, or discard this patch.
src/MiddlewareResolverInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,6 +62,6 @@
 block discarded – undo
62 62
      * @return MiddlewareInterface
63 63
      */
64 64
     public function resolve(
65
-        string|MiddlewareInterface|RequestHandlerInterface|callable $handler
65
+        string | MiddlewareInterface | RequestHandlerInterface | callable $handler
66 66
     ): MiddlewareInterface;
67 67
 }
Please login to merge, or discard this patch.