From 3e2f1610a25edc2afc2f5f37cc421049d6bef208 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 7 Dec 2021 12:27:08 +0100 Subject: [PATCH] Remove FQCN type hints on properties --- HttpBrowser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpBrowser.php b/HttpBrowser.php index bf73f67..4f036e2 100644 --- a/HttpBrowser.php +++ b/HttpBrowser.php @@ -26,7 +26,7 @@ */ class HttpBrowser extends AbstractBrowser { - private HttpClientInterface $client; + private $client; public function __construct(HttpClientInterface $client = null, History $history = null, CookieJar $cookieJar = null) {