1*c9c6f2ecSGreg Roach<?php 2*c9c6f2ecSGreg Roach 3*c9c6f2ecSGreg Roach/** 4*c9c6f2ecSGreg Roach * webtrees: online genealogy 5*c9c6f2ecSGreg Roach * Copyright (C) 2021 webtrees development team 6*c9c6f2ecSGreg Roach * This program is free software: you can redistribute it and/or modify 7*c9c6f2ecSGreg Roach * it under the terms of the GNU General Public License as published by 8*c9c6f2ecSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9*c9c6f2ecSGreg Roach * (at your option) any later version. 10*c9c6f2ecSGreg Roach * This program is distributed in the hope that it will be useful, 11*c9c6f2ecSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*c9c6f2ecSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*c9c6f2ecSGreg Roach * GNU General Public License for more details. 14*c9c6f2ecSGreg Roach * You should have received a copy of the GNU General Public License 15*c9c6f2ecSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16*c9c6f2ecSGreg Roach */ 17*c9c6f2ecSGreg Roach 18*c9c6f2ecSGreg Roachdeclare(strict_types=1); 19*c9c6f2ecSGreg Roach 20*c9c6f2ecSGreg Roachnamespace Fisharebest\Webtrees\Module; 21*c9c6f2ecSGreg Roach 22*c9c6f2ecSGreg Roach/** 23*c9c6f2ecSGreg Roach * Interface ModuleMapAutocompleteInterface - Classes and libraries for module system 24*c9c6f2ecSGreg Roach */ 25*c9c6f2ecSGreg Roachinterface ModuleMapAutocompleteInterface extends ModuleInterface 26*c9c6f2ecSGreg Roach{ 27*c9c6f2ecSGreg Roach /** 28*c9c6f2ecSGreg Roach * @param string $place 29*c9c6f2ecSGreg Roach * 30*c9c6f2ecSGreg Roach * @return array<string> 31*c9c6f2ecSGreg Roach */ 32*c9c6f2ecSGreg Roach public function searchPlaceNames(string $place): array; 33*c9c6f2ecSGreg Roach} 34