From a4833bbfe46033eafa703ec9482888fbf6b827de Mon Sep 17 00:00:00 2001 From: Luke Downing Date: Wed, 22 Mar 2023 11:13:39 +0000 Subject: [PATCH] feat(parallel): Adds support for plugins to filter parallel arguments --- src/Plugins/Parallel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/Parallel.php b/src/Plugins/Parallel.php index dbbaa9b9..a6980b23 100644 --- a/src/Plugins/Parallel.php +++ b/src/Plugins/Parallel.php @@ -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; } }