for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HDNET\Calendarize\Updates;
use TYPO3\CMS\Install\Updates\UpgradeWizardInterface;
abstract class AbstractUpdate implements UpgradeWizardInterface
{
/**
* @var string
*/
protected $description = '';
protected $title = '';
public function getDescription(): string
return $this->description;
}
public function getTitle(): string
return $this->title;
public function getIdentifier(): string
return get_class($this);