You are here

function MCAPI::setTimeout in Mailchimp 7

Same name and namespace in other branches
  1. 6.2 MCAPI.class.php \MCAPI::setTimeout()

File

./MCAPI.class.php, line 52

Class

MCAPI

Code

function setTimeout($seconds) {
  if (is_int($seconds)) {
    $this->timeout = $seconds;
    return true;
  }
}