Test Setup Failed
Push — master ( a51f40...5d064e )
by Arnold
05:17
created
src/Guardian.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * Run a set of guards.
24 24
      */
25 25
     public function guard(
26
-        \ReflectionObject|\ReflectionMethod $subject,
26
+        \ReflectionObject | \ReflectionMethod $subject,
27 27
         ServerRequestInterface $request,
28 28
         ResponseInterface $response,
29 29
     ): ?ResponseInterface {
Please login to merge, or discard this patch.
src/Traits/Guarded.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         return $this->guardian;
20 20
     }
21 21
 
22
-    protected function guard(\ReflectionObject|\ReflectionMethod $subject): ?ResponseInterface
22
+    protected function guard(\ReflectionObject | \ReflectionMethod $subject): ?ResponseInterface
23 23
     {
24 24
         return $this->getGuardian()->guard($subject, $this->getRequest(), $this->getResponse());
25 25
     }
Please login to merge, or discard this patch.