. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; /** * Trait ModuleExternalUrlITrait - default implementation of ModuleExternalUrlIInterface. */ trait ModuleExternalUrlTrait { /** * Home page for the service. * * @return string */ public function externalUrl(): string { return ''; } }