Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/Command/Integrity/CheckApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(Checker $checker) {
parent::__construct();
$this->checker = $checker;
}

/**
* {@inheritdoc }
*/
Expand All @@ -54,7 +54,7 @@ protected function configure() {
$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.');
}

Expand Down