Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Guzzle v6 compatibility fix #291

Merged
merged 1 commit into from
Jan 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Goutte/Client.php
Expand Up @@ -44,7 +44,7 @@ public function setClient(GuzzleClientInterface $client)
public function getClient()
{
if (!$this->client) {
$this->client = new GuzzleClient(array('defaults' => array('allow_redirects' => false, 'cookies' => true)));
$this->client = new GuzzleClient(array('allow_redirects' => false, 'cookies' => true));
}

return $this->client;
Expand Down