You are here

public function Thennable::resolve in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/promises/tests/Thennable.php \GuzzleHttp\Promise\Tests\Thennable::resolve()
1 method overrides Thennable::resolve()
NotPromiseInstance::resolve in vendor/guzzlehttp/promises/tests/NotPromiseInstance.php
Resolve the promise with the given value.

File

vendor/guzzlehttp/promises/tests/Thennable.php, line 20

Class

Thennable

Namespace

GuzzleHttp\Promise\Tests

Code

public function resolve($value) {
  $this->nextPromise
    ->resolve($value);
}