We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
19 | class Executor implements ExecutorInterface |
||
20 | { |
||
21 | /** |
||
22 | * @param Schema $schema |
||
23 | * @param string $requestString |
||
24 | * @param null|array $rootValue |
||
25 | * @param null|array $contextValue |
||
26 | * @param null|array $variableValues |
||
27 | * @param null|string $operationName |
||
28 | * |
||
29 | * @return ExecutionResult|Promise |
||
30 | */ |
||
31 | 46 | public function execute(Schema $schema, $requestString, $rootValue = null, $contextValue = null, $variableValues = null, $operationName = null) |
|
35 | |||
36 | /** |
||
37 | * @param PromiseAdapterInterface|null $promiseAdapter |
||
38 | */ |
||
39 | 48 | public function setPromiseAdapter(PromiseAdapterInterface $promiseAdapter = null) |
|
43 | } |
||
44 |