|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Response/BaseType.php'; 00027 00036 class Zend_Service_DeveloperGarden_Response_IpLocation_CityType 00037 extends Zend_Service_DeveloperGarden_Response_BaseType 00038 { 00042 public $countryCode = null; 00043 00047 public $cityCode = null; 00048 00052 public $cityName = null; 00053 00057 public function getCountryCode() 00058 { 00059 return $this->countryCode; 00060 } 00061 00065 public function getCityCode() 00066 { 00067 return $this->cityCode; 00068 } 00069 00073 public function getCityName() 00074 { 00075 return $this->cityName; 00076 } 00077 }