We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
18 | class Executor implements ExecutorInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var PromiseAdapter |
||
22 | */ |
||
23 | private $promiseAdapter; |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 59 | public function execute(Schema $schema, $requestString, $rootValue = null, $contextValue = null, $variableValues = null, $operationName = null) |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 61 | public function setPromiseAdapter(PromiseAdapter $promiseAdapter = null) |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 57 | public function setDefaultFieldResolver(callable $fn) |
|
57 | } |
||
58 |