@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | ); |
177 | 177 | |
178 | 178 | // Traverses the $ips array. Set $ip to current value if it's a public IP. |
179 | - array_walk($ips, static function (string $value, int $key) use (&$ip): string { |
|
179 | + array_walk($ips, static function(string $value, int $key) use (&$ip): string { |
|
180 | 180 | if (Environment::isPublicIp($value)) { |
181 | 181 | $ip = $value; |
182 | 182 | } |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | * |
386 | 386 | * @throws RuntimeException|ArgumentCountError |
387 | 387 | */ |
388 | - public static function iniSet(string $option, string|int|float|bool|null $value): string | false |
|
388 | + public static function iniSet(string $option, string | int | float | bool | null $value): string | false |
|
389 | 389 | { |
390 | 390 | static $iniSetAvailable; |
391 | 391 |