Failed Conditions
Push — master ( bea035...793b2f )
by Adrien
17:10 queued 55s
created
tests/UploadMiddlewareTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@
 block discarded – undo
267 267
         return $result;
268 268
     }
269 269
 
270
-    private function process(ServerRequestInterface $request): ResponseInterface|ServerRequestInterface
270
+    private function process(ServerRequestInterface $request): ResponseInterface | ServerRequestInterface
271 271
     {
272 272
         $defaultResponse = new Response\EmptyResponse();
273 273
         $handler = new class($defaultResponse) implements RequestHandlerInterface {
Please login to merge, or discard this patch.
src/Utility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * @param int|numeric-string $value
29 29
      */
30
-    public static function toMebibyte(string|int $value): string
30
+    public static function toMebibyte(string | int $value): string
31 31
     {
32 32
         return number_format($value / 1024 / 1024, 2, thousands_separator: "'") . ' MiB';
33 33
     }
Please login to merge, or discard this patch.