We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b6085 commit e567930Copy full SHA for e567930
Controller/GraphQLiteController.php
@@ -79,7 +79,7 @@ public function handleRequest(Request $request): Response
79
throw new \RuntimeException('Invalid JSON received in POST body: '.json_last_error_msg());
80
}
81
if (!is_array($parsedBody)){
82
- throw new \RuntimeException('Expecting associative array from request, got ' . gettype($content));
+ throw new \RuntimeException('Expecting associative array from request, got ' . gettype($parsedBody));
83
84
$psr7Request = $psr7Request->withParsedBody($parsedBody);
85
0 commit comments