We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | class ExecutorEvent extends Event |
||
9 | { |
||
10 | /** @var Schema */ |
||
11 | private $schema; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $requestString; |
||
15 | |||
16 | /** @var \ArrayObject */ |
||
17 | private $rootValue; |
||
18 | |||
19 | /** @var \ArrayObject */ |
||
20 | private $contextValue; |
||
21 | |||
22 | /** @var null|array */ |
||
23 | private $variableValue; |
||
24 | |||
25 | /** @var null|string */ |
||
26 | private $operationName; |
||
27 | |||
28 | 61 | public function __construct(Schema $schema, $requestString, \ArrayObject $rootValue, \ArrayObject $contextValue, $variableValue = null, $operationName = null) |
|
37 | |||
38 | /** |
||
39 | * @return Schema |
||
40 | */ |
||
41 | 61 | public function getSchema() |
|
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | 61 | public function getRequestString() |
|
53 | |||
54 | /** |
||
55 | * @return \ArrayObject |
||
56 | */ |
||
57 | 61 | public function getRootValue() |
|
61 | |||
62 | /** |
||
63 | * @return \ArrayObject |
||
64 | */ |
||
65 | 61 | public function getContextValue() |
|
69 | |||
70 | /** |
||
71 | * @return array|null |
||
72 | */ |
||
73 | 61 | public function getVariableValue() |
|
77 | |||
78 | /** |
||
79 | * @return null|string |
||
80 | */ |
||
81 | 61 | public function getOperationName() |
|
85 | } |
||
86 |