]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix appid argument for integrity:check-app 16080/head
authorGeorg Ehrke <developer@georgehrke.com>
Fri, 14 Jun 2019 07:16:59 +0000 (09:16 +0200)
committerBackportbot <backportbot-noreply@rullzer.com>
Tue, 25 Jun 2019 19:37:17 +0000 (19:37 +0000)
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
core/Command/Integrity/CheckApp.php

index d0dfbcada3a13b95a61cee3c366ffba3f7aa27ee..1c71286195a3bf1ac74d9f683f28042536ff3527 100644 (file)
@@ -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.');
        }