. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; /** * Make an XREF. */ interface XrefFactoryInterface { /** * Create a new XREF. * * @param string $record_type * * @return string */ public function make(string $record_type): string; }