From ff82596158a630bb660dfb738945b03f3afa9f81 Mon Sep 17 00:00:00 2001 From: Luke Downing Date: Wed, 22 Mar 2023 11:27:26 +0000 Subject: [PATCH] feat(parallel): Adds support for plugins to filter parallel arguments --- src/Plugins/Parallel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Plugins/Parallel.php b/src/Plugins/Parallel.php index e93c34a4..baecfe1a 100644 --- a/src/Plugins/Parallel.php +++ b/src/Plugins/Parallel.php @@ -79,6 +79,7 @@ final class Parallel implements HandlesArguments foreach ($placesToCheck as $location) { if (array_key_exists(self::GLOBAL_PREFIX.$key, $location)) { + // @phpstan-ignore-next-line return json_decode($location[self::GLOBAL_PREFIX.$key], true)['value'] ?? null; } }