chore: Rename classes

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-04-28 12:50:01 +02:00
parent 04d245994e
commit 6c131cbc1b
60 changed files with 201 additions and 261 deletions

View File

@@ -31,7 +31,7 @@ use SP\Core\Language;
use SP\Core\ModuleBase;
use SP\Core\ProvidersHelper;
use SP\Domain\Core\LanguageInterface;
use SP\Util\VersionUtil;
use SP\Util\Version;
use Symfony\Component\Console\Application as ConsoleApplication;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
@@ -96,7 +96,7 @@ final class Init extends ModuleBase
private function initCli(): void
{
$this->consoleApplication->setName('sysPass CLI');
$this->consoleApplication->setVersion(implode('.', VersionUtil::getVersionArray()));
$this->consoleApplication->setVersion(implode('.', Version::getVersionArray()));
$this->consoleApplication->addCommands($this->cliCommandHelper->getCommands());
$this->consoleApplication->run(