]> git.openstreetmap.org Git - nominatim.git/blob - test/php/Nominatim/tokenizer.php
Merge pull request #2553 from lonvia/revert-street-matching-to-full-names
[nominatim.git] / test / php / Nominatim / tokenizer.php
1 <?php
2
3 namespace Nominatim;
4
5 class Tokenizer
6 {
7     private $oDB;
8
9     public function __construct(&$oDB)
10     {
11         $this->oDB =& $oDB;
12     }
13
14     public function checkStatus()
15     {
16     }
17 }