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