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

This commit is contained in:
Luke Downing
2023-03-22 11:13:39 +00:00
parent 7433cc5565
commit a4833bbfe4

View File

@ -73,7 +73,7 @@ final class Parallel implements HandlesArguments
foreach ($placesToCheck as $location) {
if (array_key_exists(self::GLOBAL_PREFIX.$key, $location)) {
return json_decode($location[self::GLOBAL_PREFIX.$key])['value'] ?? null;
return json_decode($location[self::GLOBAL_PREFIX.$key], true)['value'] ?? null;
}
}