Ejemplo n.º 1
0
 /**
  * @return Google_Auth_Abstract Authentication implementation
  */
 public function getAuth()
 {
     if (!isset($this->auth)) {
         $class = $this->config->getAuthClass();
         $this->auth = new $class($this);
     }
     return $this->auth;
 }