We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | final class ExecutorArgumentsEvent extends Event |
||
9 | { |
||
10 | /** @var Schema */ |
||
11 | private $schema; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $requestString; |
||
15 | |||
16 | /** @var mixed */ |
||
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 static function create( |
|
46 | |||
47 | /** |
||
48 | * @param null|string $operationName |
||
49 | */ |
||
50 | 61 | public function setOperationName($operationName = null) |
|
54 | |||
55 | 61 | public function setContextValue(\ArrayObject $contextValue = null) |
|
59 | |||
60 | /** |
||
61 | * @param mixed $rootValue |
||
62 | */ |
||
63 | 61 | public function setRootValue($rootValue = null) |
|
67 | |||
68 | /** |
||
69 | * @param string $requestString |
||
70 | */ |
||
71 | 61 | public function setRequestString($requestString) |
|
75 | |||
76 | 61 | public function setVariableValue(array $variableValue = null) |
|
80 | |||
81 | 61 | public function setSchema(Schema $schema) |
|
85 | |||
86 | /** |
||
87 | * @return Schema |
||
88 | */ |
||
89 | 61 | public function getSchema() |
|
93 | |||
94 | /** |
||
95 | * @return string |
||
96 | */ |
||
97 | 61 | public function getRequestString() |
|
101 | |||
102 | /** |
||
103 | * @return array|null |
||
104 | */ |
||
105 | 61 | public function getRootValue() |
|
109 | |||
110 | /** |
||
111 | * @return \ArrayObject |
||
112 | */ |
||
113 | 61 | public function getContextValue() |
|
117 | |||
118 | /** |
||
119 | * @return array|null |
||
120 | */ |
||
121 | 61 | public function getVariableValue() |
|
125 | |||
126 | /** |
||
127 | * @return null|string |
||
128 | */ |
||
129 | 61 | public function getOperationName() |
|
133 | } |
||
134 |