Passed
Pull Request — master (#31)
by Anatoly
03:57
created
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
             throw new InvalidArgumentException('HTTP status code must be an integer');
263 263
         }
264 264
 
265
-        if (! ($statusCode >= 100 && $statusCode <= 599)) {
265
+        if (!($statusCode >= 100 && $statusCode <= 599)) {
266 266
             throw new InvalidArgumentException('Invalid HTTP status code');
267 267
         }
268 268
     }
Please login to merge, or discard this patch.
functions/server_request_uri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     $serverParams ??= $_SERVER;
36 36
 
37 37
     if (array_key_exists('HTTPS', $serverParams)) {
38
-        if (! ('off' === $serverParams['HTTPS'])) {
38
+        if (!('off' === $serverParams['HTTPS'])) {
39 39
             $scheme = 'https://';
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/ServerRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -358,8 +358,8 @@
 block discarded – undo
358 358
         /**
359 359
          * @psalm-suppress MissingClosureParamType
360 360
          */
361
-        array_walk_recursive($files, static function ($file): void {
362
-            if (! ($file instanceof UploadedFileInterface)) {
361
+        array_walk_recursive($files, static function($file): void {
362
+            if (!($file instanceof UploadedFileInterface)) {
363 363
                 throw new InvalidArgumentException('Invalid uploaded file');
364 364
             }
365 365
         });
Please login to merge, or discard this patch.
src/Uri/Component/Fragment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         $this->value = (string) preg_replace_callback(
68 68
             self::NORMALIZATION_REGEX,
69
-            static function (array $match): string {
69
+            static function(array $match): string {
70 70
                 /** @var array{0: string, 1?: string} $match */
71 71
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
72 72
             },
Please login to merge, or discard this patch.
src/Uri/Component/Password.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         $this->value = (string) preg_replace_callback(
68 68
             self::NORMALIZATION_REGEX,
69
-            static function (array $match): string {
69
+            static function(array $match): string {
70 70
                 /** @var array{0: string, 1?: string} $match */
71 71
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
72 72
             },
Please login to merge, or discard this patch.
src/Uri/Component/Host.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
         $this->value = (string) preg_replace_callback(
69 69
             self::NORMALIZATION_REGEX,
70
-            static function (array $match): string {
70
+            static function(array $match): string {
71 71
                 /** @var array{0: string, 1?: string} $match */
72 72
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
73 73
             },
Please login to merge, or discard this patch.
src/Uri/Component/Path.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         $this->value = (string) preg_replace_callback(
68 68
             self::NORMALIZATION_REGEX,
69
-            static function (array $match): string {
69
+            static function(array $match): string {
70 70
                 /** @var array{0: string, 1?: string} $match */
71 71
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
72 72
             },
Please login to merge, or discard this patch.
src/Uri/Component/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         $this->value = (string) preg_replace_callback(
68 68
             self::NORMALIZATION_REGEX,
69
-            static function (array $match): string {
69
+            static function(array $match): string {
70 70
                 /** @var array{0: string, 1?: string} $match */
71 71
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
72 72
             },
Please login to merge, or discard this patch.
src/Uri/Component/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         $this->value = (string) preg_replace_callback(
68 68
             self::NORMALIZATION_REGEX,
69
-            static function (array $match): string {
69
+            static function(array $match): string {
70 70
                 /** @var array{0: string, 1?: string} $match */
71 71
                 return isset($match[1]) ? rawurlencode($match[1]) : $match[0];
72 72
             },
Please login to merge, or discard this patch.