Promise
2 months ago
ExecutionContext.php
2 months ago
ExecutionResult.php
2 months ago
Executor.php
2 months ago
ExecutorImplementation.php
2 months ago
PromiseExecutor.php
2 months ago
ReferenceExecutor.php
2 months ago
ScopedContext.php
2 months ago
Values.php
2 months ago
ExecutorImplementation.php
12 lines
| 1 | <?php declare(strict_types=1); |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Vendor\GraphQL\Executor; |
| 4 | |
| 5 | use Automattic\WooCommerce\Vendor\GraphQL\Executor\Promise\Promise; |
| 6 | |
| 7 | interface ExecutorImplementation |
| 8 | { |
| 9 | /** Returns promise of {@link ExecutionResult}. Promise should always resolve, never reject. */ |
| 10 | public function doExecute(): Promise; |
| 11 | } |
| 12 |