xref: /webtrees/app/DefaultUser.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
1e5a6b4d4SGreg Roach<?php
23976b470SGreg Roach
3e5a6b4d4SGreg Roach/**
4e5a6b4d4SGreg Roach * webtrees: online genealogy
5e5a6b4d4SGreg Roach * Copyright (C) 2019 webtrees development team
6e5a6b4d4SGreg Roach * This program is free software: you can redistribute it and/or modify
7e5a6b4d4SGreg Roach * it under the terms of the GNU General Public License as published by
8e5a6b4d4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e5a6b4d4SGreg Roach * (at your option) any later version.
10e5a6b4d4SGreg Roach * This program is distributed in the hope that it will be useful,
11e5a6b4d4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e5a6b4d4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e5a6b4d4SGreg Roach * GNU General Public License for more details.
14e5a6b4d4SGreg Roach * You should have received a copy of the GNU General Public License
15e5a6b4d4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16e5a6b4d4SGreg Roach */
17*fcfa147eSGreg Roach
18e5a6b4d4SGreg Roachdeclare(strict_types=1);
19e5a6b4d4SGreg Roach
20e5a6b4d4SGreg Roachnamespace Fisharebest\Webtrees;
21e5a6b4d4SGreg Roach
22e5a6b4d4SGreg Roach/**
23e5a6b4d4SGreg Roach * A default user - to store default preferences.
24e5a6b4d4SGreg Roach */
255206405dSRico Sonntagclass DefaultUser extends User
26e5a6b4d4SGreg Roach{
27e5a6b4d4SGreg Roach    public function __construct()
28e5a6b4d4SGreg Roach    {
29e5a6b4d4SGreg Roach        parent::__construct(-1, '', 'DEFAULT_USER', 'DEFAULT_USER');
30e5a6b4d4SGreg Roach    }
31e5a6b4d4SGreg Roach}
32