We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | 61 | public function __construct(Schema $schema, $requestString, \ArrayObject $rootValue, \ArrayObject $contextValue, $variableValue = null, $operationName = null) |
|
29 | { |
||
30 | 61 | $this->schema = $schema; |
|
31 | 61 | $this->requestString = $requestString; |
|
32 | 61 | $this->rootValue = $rootValue; |
|
33 | 61 | $this->contextValue = $contextValue; |
|
34 | 61 | $this->variableValue = $variableValue; |
|
35 | 61 | $this->operationName = $operationName; |
|
36 | 61 | } |
|
37 | |||
86 |