Files
GermanAirlinesVA-GraphQL/vendor/webonyx/graphql-php/src/Executor/ExecutorImplementation.php
T
Kilian Hofmann 499abe195e Vendor
2021-06-01 19:56:34 +02:00

16 lines
293 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Executor;
use GraphQL\Executor\Promise\Promise;
interface ExecutorImplementation
{
/**
* Returns promise of {@link ExecutionResult}. Promise should always resolve, never reject.
*/
public function doExecute() : Promise;
}