@@ -262,7 +262,7 @@ |
||
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 | } |
@@ -35,7 +35,7 @@ |
||
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 | } |
@@ -358,8 +358,8 @@ |
||
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 | }); |
@@ -66,7 +66,7 @@ |
||
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 | }, |
@@ -66,7 +66,7 @@ |
||
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 | }, |
@@ -67,7 +67,7 @@ |
||
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 | }, |
@@ -66,7 +66,7 @@ |
||
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 | }, |
@@ -66,7 +66,7 @@ |
||
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 | }, |
@@ -66,7 +66,7 @@ |
||
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 | }, |