xref: /webtrees/app/Schema/SeedInterface.php (revision c9beb871618c93e73b7fa1822beb196eeebd4dd5)
1*c9beb871SGreg Roach<?php
2*c9beb871SGreg Roach/**
3*c9beb871SGreg Roach * webtrees: online genealogy
4*c9beb871SGreg Roach * Copyright (C) 2018 webtrees development team
5*c9beb871SGreg Roach * This program is free software: you can redistribute it and/or modify
6*c9beb871SGreg Roach * it under the terms of the GNU General Public License as published by
7*c9beb871SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8*c9beb871SGreg Roach * (at your option) any later version.
9*c9beb871SGreg Roach * This program is distributed in the hope that it will be useful,
10*c9beb871SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*c9beb871SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12*c9beb871SGreg Roach * GNU General Public License for more details.
13*c9beb871SGreg Roach * You should have received a copy of the GNU General Public License
14*c9beb871SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15*c9beb871SGreg Roach */
16*c9beb871SGreg Roachdeclare(strict_types=1);
17*c9beb871SGreg Roach
18*c9beb871SGreg Roachnamespace Fisharebest\Webtrees\Schema;
19*c9beb871SGreg Roach
20*c9beb871SGreg Roach/**
21*c9beb871SGreg Roach * Populate database tables.
22*c9beb871SGreg Roach */
23*c9beb871SGreg Roachinterface SeedInterface
24*c9beb871SGreg Roach{
25*c9beb871SGreg Roach    /**
26*c9beb871SGreg Roach     *  Run the seeder.
27*c9beb871SGreg Roach     *
28*c9beb871SGreg Roach     * @return void
29*c9beb871SGreg Roach     */
30*c9beb871SGreg Roach    public function run(): void;
31*c9beb871SGreg Roach}
32