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 892a93c commit fe3211fCopy full SHA for fe3211f
Context/SymfonyGraphQLContext.php
@@ -5,8 +5,9 @@
5
6
7
use Symfony\Component\HttpFoundation\Request;
8
+use TheCodingMachine\GraphQLite\Context\Context;
9
-class SymfonyGraphQLContext implements SymfonyRequestContextInterface
10
+class SymfonyGraphQLContext extends Context implements SymfonyRequestContextInterface
11
{
12
/**
13
* @var Request
@@ -15,6 +16,7 @@ class SymfonyGraphQLContext implements SymfonyRequestContextInterface
15
16
17
public function __construct(Request $request)
18
19
+ parent::__construct();
20
$this->request = $request;
21
}
22
0 commit comments