public function __get()

in js/plugins/ajax-contact-extend/classes/twitter/EpiTwitter.php [38:48]


  public function __get($name)
  {
  $this->responseText = $this->resp->data;
  $this->response = (array)json_decode($this->responseText, 1);
  foreach($this->response as $k => $v)
  {
    $this->$k = $v;
  }

  return $this->$name;
  }