Skip to content

Commit

Permalink
Merge pull request #42 from dlubitz/patch-1
Browse files Browse the repository at this point in the history
BUGFIX: Use correct type hint
  • Loading branch information
das-nagnag authored Jan 21, 2025
2 parents f8aafc9 + 9ea58a7 commit bd7832d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Classes/Controller/GraphQLController.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ class GraphQLController extends ActionController
/**
* @Flow\SkipCsrfProtection
*
* @param mixed[]|null $variables
* @param array|null $variables
*
* @throws \Neos\Flow\Mvc\Exception\NoSuchArgumentException
* @throws InvalidContextException
*
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingTraversableTypeHintSpecification
* @phpcsSuppress PEAR.Commenting.FunctionComment.MissingParamTag
*/
public function queryAction(string $endpoint, string $query, ?array $variables = null, ?string $operationName = null): string
Expand Down

0 comments on commit bd7832d

Please sign in to comment.