]> git.openstreetmap.org Git - nominatim.git/blob - lib/TokenHousenumber.php
introduce classes for token list and token types
[nominatim.git] / lib / TokenHousenumber.php
1 <?php
2
3 namespace Nominatim\Token;
4
5 /**
6  * A house number token.
7  */
8 class HouseNumber
9 {
10     public $iId;
11     public $sToken;
12
13     public function __construct($iId, $sToken)
14     {
15         $this->iId = $iId;
16         $this->sToken = $sToken;
17     }
18
19     public function debugInfo()
20     {
21         return array(
22                 'ID' => $this->iId,
23                 'Type' => 'house number',
24                 'Info' => array('nr' => $this->sToken)
25                );
26     }
27 }