From a9b735d40ebfc6b0e69330bb87d343bb7d051acc Mon Sep 17 00:00:00 2001 From: Nyholm Date: Wed, 16 Sep 2020 16:31:23 +0200 Subject: [PATCH] CS fixes --- src/Promise.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Promise.php b/src/Promise.php index f00e582..b830216 100644 --- a/src/Promise.php +++ b/src/Promise.php @@ -44,10 +44,6 @@ final class Promise implements HttpPromise */ private $request; - /** - * @param PromiseInterface $promise - * @param RequestInterface $request - */ public function __construct(PromiseInterface $promise, RequestInterface $request) { $this->request = $request; @@ -109,9 +105,6 @@ public function wait($unwrap = true) /** * Converts a Guzzle exception into an Httplug exception. * - * @param GuzzleExceptions\GuzzleException $exception - * @param RequestInterface $request - * * @return HttplugException */ private function handleException(GuzzleExceptions\GuzzleException $exception, RequestInterface $request)