Skip to content

Commit

Permalink
📝 Remove some docblocks that did not add information
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed May 12, 2018
1 parent 488fc8c commit 1351720
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/Proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,21 @@
class Proxy
{
/**
* The Request instance.
*
* @var RequestInterface
*/
protected $request;

/**
* The adapter instance.
*
* @var AdapterInterface
*/
protected $adapter;

/**
* Middleware filters.
*
* @var callable[]
*/
protected $filters = [];

/**
* Construct a Proxy instance.
*
* @param AdapterInterface $adapter
*/
public function __construct(AdapterInterface $adapter)
Expand Down Expand Up @@ -102,7 +94,7 @@ public function to($target)
}

/**
* Add filter middleware.
* Add a filter middleware.
*
* @param callable $callable
* @return $this
Expand All @@ -115,8 +107,6 @@ public function filter(callable $callable)
}

/**
* Get the request instance.
*
* @return RequestInterface
*/
public function getRequest()
Expand Down

0 comments on commit 1351720

Please sign in to comment.