* @author Guillermo A. Fisher */ class Enterprise extends AbstractApi { /** * @return Stats */ public function stats() { return new Stats($this->getClient()); } /** * @return License */ public function license() { return new License($this->getClient()); } /** * @return ManagementConsole */ public function console() { return new ManagementConsole($this->getClient()); } /** * @return UserAdmin */ public function userAdmin() { return new UserAdmin($this->getClient()); } }