diff --git a/pint.json b/pint.json index 510a4a7..cf99828 100644 --- a/pint.json +++ b/pint.json @@ -7,6 +7,7 @@ "anonymous_class": false, "named_class": false }, - "concat_space": false + "concat_space": false, + "ordered_traits": false } } diff --git a/src/PHPScraper.php b/src/PHPScraper.php index f8cdffe..e1885db 100644 --- a/src/PHPScraper.php +++ b/src/PHPScraper.php @@ -96,8 +96,8 @@ public function setConfig(array $config = []): self $httpClient = SymfonyHttpClient::create([ 'proxy' => $this->config['proxy'], 'timeout' => $this->config['timeout'], - 'verify_host' => !$this->config['disable_ssl'], - 'verify_peer' => !$this->config['disable_ssl'], + 'verify_host' => ! $this->config['disable_ssl'], + 'verify_peer' => ! $this->config['disable_ssl'], ]); // BrowserKit Client and set some config needed for it.