mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
18 lines
194 B
PHP
18 lines
194 B
PHP
<?php
|
|
|
|
namespace Nominatim;
|
|
|
|
class Tokenizer
|
|
{
|
|
private $oDB;
|
|
|
|
public function __construct(&$oDB)
|
|
{
|
|
$this->oDB =& $oDB;
|
|
}
|
|
|
|
public function checkStatus()
|
|
{
|
|
}
|
|
}
|