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 4c4c1f9 + 2f59387 commit cac94ebCopy full SHA for cac94eb
.styleci.yml
@@ -6,5 +6,3 @@ finder:
6
path:
7
- "src"
8
9
-enabled:
10
- - short_array_syntax
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