100% type coverage for psalm
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-07-28 12:12:47 +00:00
parent 14b2155595
commit 1d898e350b
6 changed files with 25 additions and 17 deletions

12
backup
View File

@ -8,8 +8,12 @@ use Composer\InstalledVersions;
$package = \Composer\InstalledVersions::getRootPackage();
$application = new Application('backup', $package['version']);
try {
$application->add(new App\CommandBackup());
$application->add(new App\CommandShow());
$application->add(new App\CommandBackup());
$application->add(new App\CommandShow());
$application->run();
$application->run();
} catch(Exception $e)
{
echo("Critical error: ". $e->getMessage());
}