. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; use Fisharebest\Webtrees\GedcomRecord; /** * Make a slug to be used in the URL of a GedcomRecord. */ interface SlugFactoryInterface { /** * @param GedcomRecord $record * * @return string */ public function make(GedcomRecord $record): string; }