Started filling in Model and Record code

This commit is contained in:
Gregory Oschwald
2013-05-07 14:23:19 -07:00
parent 76a40bb2a1
commit 531e11f3e2
15 changed files with 67 additions and 14 deletions
+8 -1
View File
@@ -2,11 +2,18 @@
namespace GeoIP2\Model;
class City
class City extends Country
{
//XXX use properties
public $city;
public $location;
public $postal;
public $subdivisions;
public function __construct($raw, $language)
{
parent::__construct($raw, $language);
}
}