Bug fixes

This commit is contained in:
Gregory Oschwald 2013-05-08 09:14:19 -07:00
parent 473435e221
commit 00f274c617
2 changed files with 7 additions and 8 deletions

View File

@ -4,21 +4,20 @@ namespace GeoIP2\Model;
class City extends Country
{
//XXX use properties
private $city;
private $location;
private $postal;
private $subdivisions = Array();
protected $city;
protected $location;
protected $postal;
protected $subdivisions = Array();
public function __construct($raw, $languages)
{
parent::__construct($raw, $languages);
$this->city = new \GeoIP2\Record\City($this->get('city'), $languages);
$this->location = new \GeoIP2\Record\Location($this->get('location'));
$this->postal = new \GeoIP2\Record\Postal($this->get('postal'));
$this->createSubdivisions($raw, $languages);
parent::__construct($raw, $languages);
}
private function createSubdivisions($raw, $languages) {

View File

@ -4,5 +4,5 @@ namespace GeoIP2\Record;
class City extends AbstractPlaceRecord
{
protected $validAttribute = Array('confidence', 'geonameId', 'names');
protected $validAttributes = Array('confidence', 'geonameId', 'names');
}