From e3697eed4c4718c9ed8c91a6ff0c4933f9cf6d27 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Tue, 12 Mar 2024 17:48:39 +0100 Subject: [PATCH] TASK: Fix types --- Classes/Controller/BackendServiceController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Controller/BackendServiceController.php b/Classes/Controller/BackendServiceController.php index 816eab2273..adc388d582 100644 --- a/Classes/Controller/BackendServiceController.php +++ b/Classes/Controller/BackendServiceController.php @@ -585,7 +585,7 @@ public function flowQueryAction(array $chain): string } /** @see GetOperation */ - assert(is_callable([$flowQuery, 'get'])); + assert(is_object($flowQuery) && is_callable([$flowQuery, 'get'])); $nodeInfoHelper = new NodeInfoHelper(); $type = $finisher['type'] ?? null;