PATH:
home
/
thebhoeo
/
public_html
/
officepoint
/
wp-content
/
plugins
/
woocommerce
/
lib
/
packages
/
GraphQL
/
Executor
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Vendor\GraphQL\Executor; use Automattic\WooCommerce\Vendor\GraphQL\Executor\Promise\Promise; class PromiseExecutor implements ExecutorImplementation { private Promise $result; public function __construct(Promise $result) { $this->result = $result; } public function doExecute(): Promise { return $this->result; } }
[+]
Promise
[-] ExecutorImplementation.php
[edit]
[-] ExecutionResult.php
[edit]
[-] ScopedContext.php
[edit]
[-] ReferenceExecutor.php
[edit]
[-] Executor.php
[edit]
[-] Values.php
[edit]
[-] ExecutionContext.php
[edit]
[+]
..
[-] PromiseExecutor.php
[edit]