public function RejectedPromiseTest::testCanRejectWithSameValue in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/guzzlehttp/promises/tests/RejectedPromiseTest.php \GuzzleHttp\Promise\Tests\RejectedPromiseTest::testCanRejectWithSameValue()
File
- vendor/
guzzlehttp/ promises/ tests/ RejectedPromiseTest.php, line 52
Class
Namespace
GuzzleHttp\Promise\TestsCode
public function testCanRejectWithSameValue() {
$p = new RejectedPromise('foo');
$p
->reject('foo');
}