public function getMerchants(MerchantLocationRequestOptions $options) { $response = parent::doSimpleRequest($this->getURL($options), Connector::GET); $xml = simplexml_load_string($response); return $this->buildMerchants($xml); }
public function getCountrySubdivisions(CountrySubdivisionAtmLocationRequestOptions $options) { $response = parent::doSimpleRequest($this->getURL($options), Connector::GET); $xml = simplexml_load_string($response); return $this->buildCountrySubdivisions($xml); }
public function getCountries() { $response = parent::doSimpleRequest($this->getURL(), Connector::GET); $xml = simplexml_load_string($response); return $this->buildCountries($xml); }
public function getRestaurants(RestaurantsLocalFavoritesRequestOptions $options) { $response = parent::doSimpleRequest($this->getURL($options), Connector::GET); $xml = simplexml_load_string($response); return $this->buildAtms($xml); }