From 7405ddc85206b647e9ca0ea35ec543fb78d0e75b Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Mon, 11 Feb 2019 02:53:24 +0700 Subject: [PATCH] Fix incorrect array type of rootValue in PHPDocs (cherry picked from commit 77448ba6239f7a8bd413c2dfc4ef6d2c3d040009) --- src/Executor/Executor.php | 2 +- src/Executor/ReferenceExecutor.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Executor/Executor.php b/src/Executor/Executor.php index c87558d..55fd0fb 100644 --- a/src/Executor/Executor.php +++ b/src/Executor/Executor.php @@ -119,7 +119,7 @@ class Executor * * Useful for async PHP platforms. * - * @param mixed[]|null $rootValue + * @param mixed|null $rootValue * @param mixed|null $contextValue * @param mixed[]|null $variableValues * @param string|null $operationName diff --git a/src/Executor/ReferenceExecutor.php b/src/Executor/ReferenceExecutor.php index e61e5ea..97a5dc1 100644 --- a/src/Executor/ReferenceExecutor.php +++ b/src/Executor/ReferenceExecutor.php @@ -115,7 +115,7 @@ class ReferenceExecutor implements ExecutorImplementation * Constructs an ExecutionContext object from the arguments passed to * execute, which we will pass throughout the other execution methods. * - * @param mixed[] $rootValue + * @param mixed $rootValue * @param mixed $contextValue * @param mixed[]|Traversable $rawVariableValues * @param string|null $operationName