Skip to content

Commit 684c839

Browse files
committed
Fix type in constructor
1 parent 22d5e81 commit 684c839

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Promise/HttpRejectedPromise.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
final class HttpRejectedPromise implements Promise
99
{
1010
/**
11-
* @var \Exception
11+
* @var Exception
1212
*/
1313
private $exception;
1414

1515
/**
16-
* @param \Exception $exception
16+
* @param Exception $exception
1717
*/
18-
public function __construct(\Exception $exception)
18+
public function __construct(Exception $exception)
1919
{
2020
$this->exception = $exception;
2121
}

0 commit comments

Comments
 (0)