Skip to content
Snippets Groups Projects
Unverified Commit 2f593878 authored by David Buchmann's avatar David Buchmann Committed by GitHub
Browse files

Merge pull request #26 from php-http/analysis-22M1L4

Apply fixes from StyleCI
parents b75c39ae bb482060
No related branches found
No related tags found
No related merge requests found
...@@ -14,9 +14,6 @@ final class FulfilledPromise implements Promise ...@@ -14,9 +14,6 @@ final class FulfilledPromise implements Promise
*/ */
private $result; private $result;
/**
* @param $result
*/
public function __construct($result) public function __construct($result)
{ {
$this->result = $result; $this->result = $result;
......
...@@ -14,9 +14,6 @@ final class RejectedPromise implements Promise ...@@ -14,9 +14,6 @@ final class RejectedPromise implements Promise
*/ */
private $exception; private $exception;
/**
* @param \Exception $exception
*/
public function __construct(\Exception $exception) public function __construct(\Exception $exception)
{ {
$this->exception = $exception; $this->exception = $exception;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment