function __construct()

in js/plugins/ajax-contact-extend/classes/twitter/EpiCurl.php [14:28]


  function __construct()
  {
  if(self::$singleton == 0)
  {
    throw new Exception('This class cannot be instantiated by the new keyword.  You must instantiate it using: $obj = EpiCurl::getInstance();');
  }

  $this->mc = curl_multi_init();
  $this->properties = array(
    'code'  => CURLINFO_HTTP_CODE,
    'time'  => CURLINFO_TOTAL_TIME,
    'length'=> CURLINFO_CONTENT_LENGTH_DOWNLOAD,
    'type'  => CURLINFO_CONTENT_TYPE
    );
  }