. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; /** * Definitions for custom tags created by various applications. */ interface CustomTagInterface { /** * The name of the application. * * @return string */ public function name(): string; /** * Tags created by this application. * * @return array */ public function tags(): array; }