Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | final class GraphQLController |
||
12 | { |
||
13 | public function __construct( |
||
14 | private readonly ResponseFactoryInterface $responseFactory, |
||
15 | private readonly StreamFactoryInterface $streamFactory, |
||
16 | private readonly StandardServer $server, |
||
17 | ) { |
||
18 | } |
||
19 | |||
20 | public function graphql(ServerRequestInterface $request): ResponseInterface |
||
29 | } |
||
30 | } |
||
31 |