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