xref: /webtrees/public/index.php (revision d7de6d4c220d78064a12e37f3ddf086b400264cf)
1*d7de6d4cSGreg Roach<?php
2*d7de6d4cSGreg Roach
3*d7de6d4cSGreg Roach/**
4*d7de6d4cSGreg Roach * webtrees: online genealogy
5*d7de6d4cSGreg Roach * Copyright (C) 2023 webtrees development team
6*d7de6d4cSGreg Roach * This program is free software: you can redistribute it and/or modify
7*d7de6d4cSGreg Roach * it under the terms of the GNU General Public License as published by
8*d7de6d4cSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9*d7de6d4cSGreg Roach * (at your option) any later version.
10*d7de6d4cSGreg Roach * This program is distributed in the hope that it will be useful,
11*d7de6d4cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*d7de6d4cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*d7de6d4cSGreg Roach * GNU General Public License for more details.
14*d7de6d4cSGreg Roach * You should have received a copy of the GNU General Public License
15*d7de6d4cSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16*d7de6d4cSGreg Roach */
17*d7de6d4cSGreg Roach
18*d7de6d4cSGreg Roachdeclare(strict_types=1);
19*d7de6d4cSGreg Roach
20*d7de6d4cSGreg Roachnamespace Fisharebest\Webtrees;
21*d7de6d4cSGreg Roach
22*d7de6d4cSGreg Roachrequire __DIR__ . '/../index.php';
23