feat(parallel): Adds support for plugins to filter parallel arguments

This commit is contained in:
Luke Downing
2023-03-22 11:17:11 +00:00
parent a4833bbfe4
commit 1915ad368a

View File

@ -64,7 +64,7 @@ final class Parallel implements HandlesArguments
{ {
$data = ['value' => $value instanceof Stringable ? $value->__toString() : $value]; $data = ['value' => $value instanceof Stringable ? $value->__toString() : $value];
$_SERVER[self::GLOBAL_PREFIX.$key] = json_encode($data); $_ENV[self::GLOBAL_PREFIX.$key] = json_encode($data);
} }
public static function getGlobal(string $key): string|int|bool|null public static function getGlobal(string $key): string|int|bool|null