| 1 | <?php |
||
| 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 |
||
| 24 | |||
| 25 | public function getTitle(): string |
||
| 29 | |||
| 30 | public function getIdentifier(): string |
||
| 34 | |||
| 35 | } |
||
| 36 |