We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 20 | class Executor implements ExecutorInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var PromiseAdapter |
||
| 24 | */ |
||
| 25 | private $promiseAdapter; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param Schema $schema |
||
| 29 | * @param string $requestString |
||
| 30 | * @param null|array $rootValue |
||
| 31 | * @param null|array $contextValue |
||
| 32 | * @param null|array $variableValues |
||
| 33 | * @param null|string $operationName |
||
| 34 | * |
||
| 35 | * @return ExecutionResult|Promise |
||
| 36 | */ |
||
| 37 | 59 | public function execute(Schema $schema, $requestString, $rootValue = null, $contextValue = null, $variableValues = null, $operationName = null) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param PromiseAdapter|null $promiseAdapter |
||
| 53 | */ |
||
| 54 | 61 | public function setPromiseAdapter(PromiseAdapter $promiseAdapter = null) |
|
| 58 | } |
||
| 59 |