xref: /webtrees/app/Statistics/Repository/Interfaces/ContactRepositoryInterface.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
18add1155SRico Sonntag<?php
23976b470SGreg Roach
38add1155SRico Sonntag/**
48add1155SRico Sonntag * webtrees: online genealogy
5242a7862SGreg Roach * Copyright (C) 2019 webtrees development team
68add1155SRico Sonntag * This program is free software: you can redistribute it and/or modify
78add1155SRico Sonntag * it under the terms of the GNU General Public License as published by
88add1155SRico Sonntag * the Free Software Foundation, either version 3 of the License, or
98add1155SRico Sonntag * (at your option) any later version.
108add1155SRico Sonntag * This program is distributed in the hope that it will be useful,
118add1155SRico Sonntag * but WITHOUT ANY WARRANTY; without even the implied warranty of
128add1155SRico Sonntag * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
138add1155SRico Sonntag * GNU General Public License for more details.
148add1155SRico Sonntag * You should have received a copy of the GNU General Public License
158add1155SRico Sonntag * along with this program. If not, see <http://www.gnu.org/licenses/>.
168add1155SRico Sonntag */
17*fcfa147eSGreg Roach
188add1155SRico Sonntagdeclare(strict_types=1);
198add1155SRico Sonntag
208add1155SRico Sonntagnamespace Fisharebest\Webtrees\Statistics\Repository\Interfaces;
218add1155SRico Sonntag
228add1155SRico Sonntag/**
238add1155SRico Sonntag * A repository providing methods for contact related statistics.
248add1155SRico Sonntag */
258add1155SRico Sonntaginterface ContactRepositoryInterface
268add1155SRico Sonntag{
278add1155SRico Sonntag    /**
288add1155SRico Sonntag     * Returns a link to contact the webmaster.
298add1155SRico Sonntag     *
308add1155SRico Sonntag     * @return string
318add1155SRico Sonntag     */
328add1155SRico Sonntag    public function contactWebmaster(): string;
338add1155SRico Sonntag
348add1155SRico Sonntag    /**
358add1155SRico Sonntag     * Returns a link to contact the genealogy contact.
368add1155SRico Sonntag     *
378add1155SRico Sonntag     * @return string
388add1155SRico Sonntag     */
398add1155SRico Sonntag    public function contactGedcom(): string;
408add1155SRico Sonntag}
41