Fix uninstaller abstract implementation

This commit is contained in:
Dennis Eichhorn 2018-04-01 18:55:14 +02:00
parent c197163e1e
commit 118e8160ec
2 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class Uninstaller extends UninstallerAbstract
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static function uninstall(DatabasePool $dbPool, InfoManager $info) public static function uninstall(DatabasePool $dbPool, InfoManager $info) : void
{ {
parent::uninstall($dbPool, $info); parent::uninstall($dbPool, $info);

View File

@ -129,9 +129,11 @@ class Calendar
/** /**
* @param string $desc Calendar description * @param string $desc Calendar description
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setDescription(string $desc) public function setDescription(string $desc) : void
{ {
$this->description = $desc; $this->description = $desc;
} }