. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\GedcomRecord; /** * Trait ModuleShareTrait - default implementation of ModuleShareInterface */ trait ModuleShareTrait { /** * HTML to include in the share links page. * * @param GedcomRecord $record * * @return string */ public function share(GedcomRecord $record): string { return ''; } }