mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 18:37:58 +00:00
28 lines
466 B
PHP
28 lines
466 B
PHP
<?php
|
|
|
|
namespace Nominatim\Token;
|
|
|
|
/**
|
|
* A country token.
|
|
*/
|
|
class Country
|
|
{
|
|
public $iId;
|
|
public $sCountryCode;
|
|
|
|
public function __construct($iId, $sCountryCode)
|
|
{
|
|
$this->iId = $iId;
|
|
$this->sCountryCode = $sCountryCode;
|
|
}
|
|
|
|
public function debugInfo()
|
|
{
|
|
return array(
|
|
'ID' => $this->iId,
|
|
'Type' => 'country',
|
|
'Info' => $this->sCountryCode
|
|
);
|
|
}
|
|
}
|