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