Skip to content

Commit

Permalink
Merge pull request #48 from ebizmarts/Issue-47
Browse files Browse the repository at this point in the history
closes #47
  • Loading branch information
gonzaloebiz authored May 18, 2023
2 parents ded9d9f + 3689e24 commit 2d644ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Mailchimp.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ public function setUserAgent($userAgent)
}
curl_setopt($this->_ch, CURLOPT_USERAGENT, $userAgent);
}
public function setTimeOut($timeout)
{
curl_setopt($this->_ch, CURLOPT_TIMEOUT, $timeout);
}
public function call($url,$params,$method=Mailchimp::GET)
{
$hasParams = true;
Expand Down

0 comments on commit 2d644ae

Please sign in to comment.