Completed
Push — master ( 70ac5a...66ce1a )
by Tim
02:18
created

AbstractUpdate::getTitle()   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
namespace HDNET\Calendarize\Updates;
4
5
use TYPO3\CMS\Install\Updates\UpgradeWizardInterface;
6
7
abstract class AbstractUpdate implements UpgradeWizardInterface
8
{
9
10
    /**
11
     * @var string
12
     */
13
    protected $description = '';
14
15
    /**
16
     * @var string
17
     */
18
    protected $title = '';
19
20
    public function getDescription(): string
21
    {
22
        return $this->description;
23
    }
24
25
    public function getTitle(): string
26
    {
27
        return $this->title;
28
    }
29
30
    public function getIdentifier(): string
31
    {
32
        return get_class($this);
33
    }
34
35
}
36