We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b75c39a + bb48206 commit 2f59387Copy full SHA for 2f59387
src/FulfilledPromise.php
@@ -14,9 +14,6 @@ final class FulfilledPromise implements Promise
14
*/
15
private $result;
16
17
- /**
18
- * @param $result
19
- */
20
public function __construct($result)
21
{
22
$this->result = $result;
src/RejectedPromise.php
@@ -14,9 +14,6 @@ final class RejectedPromise implements Promise
private $exception;
- * @param \Exception $exception
public function __construct(\Exception $exception)
$this->exception = $exception;
0 commit comments