Migration0   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A upgrade() 0 2 1
1
<?php
2
3
/**
4
 * webtrees-lib: MyArtJaub library for webtrees
5
 *
6
 * @package MyArtJaub\Webtrees
7
 * @subpackage GeoDispersion
8
 * @author Jonathan Jaubart <[email protected]>
9
 * @copyright Copyright (c) 2009-2022, Jonathan Jaubart
10
 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3
11
 */
12
13
declare(strict_types=1);
14
15
namespace MyArtJaub\Webtrees\Module\GeoDispersion\Schema;
16
17
use Fisharebest\Webtrees\Schema\MigrationInterface;
18
19
/**
20
 * Upgrade the database schema from version 0 (empty database) to version 1.
21
 */
22
class Migration0 implements MigrationInterface
23
{
24
    /**
25
     * {@inheritDoc}
26
     * @see \Fisharebest\Webtrees\Schema\MigrationInterface::upgrade()
27
     */
28
    public function upgrade(): void
29
    {
30
        // This migration has been superseded by migration 1.
31
    }
32
}
33