Completed
Pull Request — master (#498)
by
unknown
02:15
created

TillDateFieldUpdate::getIdentifier()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace HDNET\Calendarize\Updates;
6
7
class TillDateFieldUpdate extends DateFieldUpdate
8
{
9
    protected $title = 'Migrate tillDate database format to real date';
10
11
    protected $description = 'This wizard migrates the existing tillDate configurations in the ' .
12
        'database from a timestamp to a real date. This enables dates before 1970 and after 2038.';
13
14
    protected $migrationMap = [
15
        'tx_calendarize_domain_model_configuration' => [
16
            'till_date',
17
        ],
18
    ];
19
20
    public function getIdentifier(): string
21
    {
22
        return 'tillDateFieldUpdate';
23
    }
24
}
25