Passed
Push — master ( f8eadb...c4e8d5 )
by Eric
02:07
created
src/Environment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.