Skip to content

Commit

Permalink
TASK: Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Mar 12, 2024
1 parent afa5ccc commit e3697ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/BackendServiceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e3697ee

Please sign in to comment.