Example #1
0
 /**
  * Handles dynamic variable calls to the class.
  *
  * @return mixed
  */
 public function __get($name)
 {
     if (is_null($this->client)) {
         return false;
     }
     return $this->client->getAttribute($name);
 }