chore(tests): UT for UpgradeDatabase

Remove unneeded upgrades

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-05-02 08:47:31 +02:00
parent 84f41f2c68
commit 7a11df9795
9 changed files with 23 additions and 193 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/*
* sysPass
@@ -87,4 +88,9 @@ abstract class ModuleBase implements ModuleInterface
$this->eventDispatcher->attach($this->providersHelper->getAclHandler());
$this->eventDispatcher->attach($this->providersHelper->getNotificationHandler());
}
protected function checkUpgradeNeeded(): bool
{
return false;
}
}