コード例 #1
0
 public function getMerchants(MerchantLocationRequestOptions $options)
 {
     $response = parent::doSimpleRequest($this->getURL($options), Connector::GET);
     $xml = simplexml_load_string($response);
     return $this->buildMerchants($xml);
 }
コード例 #2
0
 public function getCountrySubdivisions(CountrySubdivisionAtmLocationRequestOptions $options)
 {
     $response = parent::doSimpleRequest($this->getURL($options), Connector::GET);
     $xml = simplexml_load_string($response);
     return $this->buildCountrySubdivisions($xml);
 }
コード例 #3
0
 public function getCountries()
 {
     $response = parent::doSimpleRequest($this->getURL(), Connector::GET);
     $xml = simplexml_load_string($response);
     return $this->buildCountries($xml);
 }
コード例 #4
0
 public function getRestaurants(RestaurantsLocalFavoritesRequestOptions $options)
 {
     $response = parent::doSimpleRequest($this->getURL($options), Connector::GET);
     $xml = simplexml_load_string($response);
     return $this->buildAtms($xml);
 }