Fix code implementation

This commit is contained in:
Dennis Eichhorn 2018-04-01 19:54:57 +02:00
parent 20227cfb38
commit ac4c9ac6fe

View File

@ -20,7 +20,7 @@ use phpOMS\System\File\Directory;
use phpOMS\Module\InfoManager; use phpOMS\Module\InfoManager;
/** /**
* Navigation class. * Updater class.
* *
* @package Modules * @package Modules
* @license OMS License 1.0 * @license OMS License 1.0
@ -30,13 +30,4 @@ use phpOMS\Module\InfoManager;
class Updater extends UpdaterAbstract class Updater extends UpdaterAbstract
{ {
/**
* {@inheritdoc}
*/
public static function update(DatabasePool $dbPool, InfoManager $info) : void
{
Directory::deletePath(__DIR__ . '/Update');
mkdir('Update');
parent::update($dbPool, $info);
}
} }