Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pint #201

Merged
merged 2 commits into from
Nov 29, 2023
Merged

Pint #201

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Pint
spekulatius committed Nov 29, 2023
commit 89a6a37074ccba98552e23fe62184567d45cb10a
4 changes: 2 additions & 2 deletions src/PHPScraper.php
Original file line number Diff line number Diff line change
@@ -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.