public function PromiseTest::testCanRejectWithSameValue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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');
}