Fixed typo in attribute name (Fixes #20)

This commit is contained in:
Gregory Oschwald 2014-08-06 06:47:50 -07:00
parent 13fbcae21c
commit a9fa7194aa
3 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,11 @@
CHANGELOG CHANGELOG
========= =========
0.7.x (2014-0X-XX)
------------------
* The name attribute was missing from the RepresentedCountry class.
0.7.0 (2014-07-22) 0.7.0 (2014-07-22)
------------------ ------------------

View File

@ -19,6 +19,7 @@
}, },
"require-dev": { "require-dev": {
"apigen/apigen": "~2.8.0", "apigen/apigen": "~2.8.0",
"nette/nette": "~2.1.3",
"phpunit/phpunit": "4.1.*", "phpunit/phpunit": "4.1.*",
"satooshi/php-coveralls": "dev-master" "satooshi/php-coveralls": "dev-master"
}, },

View File

@ -34,7 +34,7 @@ class RepresentedCountry extends Country
'confidence', 'confidence',
'geonameId', 'geonameId',
'isoCode', 'isoCode',
'namespace', 'names',
'type' 'type'
); );
} }