/** * Factory method for Eden_Google_Plus_People Class * * @return Eden_Google_Plus_People */ public function people() { return Eden_Google_Plus_People::i($this->_token); }
if(!class_exists('Eden_Google_Plus')){class Eden_Google_Plus extends Eden_Google_Base{public static function i(){return self::_getMultiple(__CLASS__);}public function __construct($token){Eden_Google_Error::i()->argument(1,'string');$this->_token=$token;}public function activity(){return Eden_Google_Plus_Activity::i($this->_token);}public function comment(){return Eden_Google_Plus_Comment::i($this->_token);}public function people(){return Eden_Google_Plus_People::i($this->_token);}}}