Skip to content

Commit 2f59387

Browse files
authored
Merge pull request #26 from php-http/analysis-22M1L4
Apply fixes from StyleCI
2 parents b75c39a + bb48206 commit 2f59387

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/FulfilledPromise.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ final class FulfilledPromise implements Promise
1414
*/
1515
private $result;
1616

17-
/**
18-
* @param $result
19-
*/
2017
public function __construct($result)
2118
{
2219
$this->result = $result;

src/RejectedPromise.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ final class RejectedPromise implements Promise
1414
*/
1515
private $exception;
1616

17-
/**
18-
* @param \Exception $exception
19-
*/
2017
public function __construct(\Exception $exception)
2118
{
2219
$this->exception = $exception;

0 commit comments

Comments
 (0)