diff options
Diffstat (limited to 'core/Command/Integrity/CheckApp.php')
-rw-r--r-- | core/Command/Integrity/CheckApp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index 3e4d8b9cba7..d0dfbcada3a 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -63,7 +63,7 @@ class CheckApp extends Base { */ protected function execute(InputInterface $input, OutputInterface $output) { $appid = $input->getArgument('appid'); - $path = strval($input->getOption('path')); + $path = (string)$input->getOption('path'); $result = $this->checker->verifyAppSignature($appid, $path); $this->writeArrayInOutputFormat($input, $output, $result); if (count($result)>0){ |