Skip to content

Commit 9ef9397

Browse files
authored
Merge pull request #16080 from nextcloud/backport/15956/stable16
[stable16] Fix appid argument for integrity:check-app
2 parents 870a330 + 27a9b7f commit 9ef9397

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/Command/Integrity/CheckApp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(Checker $checker) {
4545
parent::__construct();
4646
$this->checker = $checker;
4747
}
48-
48+
4949
/**
5050
* {@inheritdoc }
5151
*/
@@ -54,7 +54,7 @@ protected function configure() {
5454
$this
5555
->setName('integrity:check-app')
5656
->setDescription('Check integrity of an app using a signature.')
57-
->addArgument('appid', null, InputArgument::REQUIRED, 'Application to check')
57+
->addArgument('appid', InputArgument::REQUIRED, 'Application to check')
5858
->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.');
5959
}
6060

0 commit comments

Comments
 (0)