Skip to content

Commit 1351720

Browse files
committed
📝 Remove some docblocks that did not add information
1 parent 488fc8c commit 1351720

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/Proxy.php

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,21 @@
1313
class Proxy
1414
{
1515
/**
16-
* The Request instance.
17-
*
1816
* @var RequestInterface
1917
*/
2018
protected $request;
2119

2220
/**
23-
* The adapter instance.
24-
*
2521
* @var AdapterInterface
2622
*/
2723
protected $adapter;
2824

2925
/**
30-
* Middleware filters.
31-
*
3226
* @var callable[]
3327
*/
3428
protected $filters = [];
3529

3630
/**
37-
* Construct a Proxy instance.
38-
*
3931
* @param AdapterInterface $adapter
4032
*/
4133
public function __construct(AdapterInterface $adapter)
@@ -102,7 +94,7 @@ public function to($target)
10294
}
10395

10496
/**
105-
* Add filter middleware.
97+
* Add a filter middleware.
10698
*
10799
* @param callable $callable
108100
* @return $this
@@ -115,8 +107,6 @@ public function filter(callable $callable)
115107
}
116108

117109
/**
118-
* Get the request instance.
119-
*
120110
* @return RequestInterface
121111
*/
122112
public function getRequest()

0 commit comments

Comments
 (0)