+ switch ($aWord['type']) {
+ 'C': // country name tokens
+ if ($aWord['country'] === null
+ || ($this->aCountryRestriction
+ && !in_array($aWord['country'], $this->aCountryRestriction))
+ ) {
+ continue;
+ }
+ $oToken = new Token\Country($iId, $aWord['country'])
+ break;
+ 'H': // house number tokens
+ $oToken = new Token\HouseNumber($iId, $aWord['word_token']);
+ break;
+ 'P': // postcode tokens
+ // Postcodes are not normalized, so they may have content
+ // that makes SQL injection possible. Reject postcodes
+ // that would need special escaping.
+ if ($aWord['postcode'] === null
+ || pg_escape_string($aWord['postcode']) == $aWord['postcode']
+ ) {
+ continue;
+ }
+ $oToken = new Token\Postcode($iId, $aWord['postcode'], null);
+ default:
+ continue;
+ }
+/* if ($aWord['class']) {