Skip to content

Commit fe3211f

Browse files
committed
Adding support for new context
1 parent 892a93c commit fe3211f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Context/SymfonyGraphQLContext.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55

66

77
use Symfony\Component\HttpFoundation\Request;
8+
use TheCodingMachine\GraphQLite\Context\Context;
89

9-
class SymfonyGraphQLContext implements SymfonyRequestContextInterface
10+
class SymfonyGraphQLContext extends Context implements SymfonyRequestContextInterface
1011
{
1112
/**
1213
* @var Request
@@ -15,6 +16,7 @@ class SymfonyGraphQLContext implements SymfonyRequestContextInterface
1516

1617
public function __construct(Request $request)
1718
{
19+
parent::__construct();
1820
$this->request = $request;
1921
}
2022

0 commit comments

Comments
 (0)