From 27a9b7f3fa9175882efc133a8e98fcd7224c2db9 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 14 Jun 2019 09:16:59 +0200 Subject: [PATCH] Fix appid argument for integrity:check-app Signed-off-by: Georg Ehrke --- core/Command/Integrity/CheckApp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index d0dfbcada3a..1c71286195a 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -45,7 +45,7 @@ class CheckApp extends Base { parent::__construct(); $this->checker = $checker; } - + /** * {@inheritdoc } */ @@ -54,7 +54,7 @@ class CheckApp extends Base { $this ->setName('integrity:check-app') ->setDescription('Check integrity of an app using a signature.') - ->addArgument('appid', null, InputArgument::REQUIRED, 'Application to check') + ->addArgument('appid', InputArgument::REQUIRED, 'Application to check') ->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.'); } -- 2.39.5