Skip to content

Commit cac94eb

Browse files
authored
Merge pull request #25 from php-http/fix-cs
cleanup configuration of cs
2 parents 4c4c1f9 + 2f59387 commit cac94eb

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

.styleci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ finder:
66
path:
77
- "src"
88

9-
enabled:
10-
- short_array_syntax

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)