From d9015a8c94bfd71fe484618a06d276701d3bf9ff Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 5 Oct 2020 15:12:57 +0200 Subject: Format code to a single space around binary operators Signed-off-by: Christoph Wurst --- core/Command/Integrity/CheckApp.php | 2 +- core/Command/Integrity/CheckCore.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'core/Command/Integrity') diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index f613aab3808..7bf92001cc8 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -72,7 +72,7 @@ class CheckApp extends Base { $path = (string)$input->getOption('path'); $result = $this->checker->verifyAppSignature($appid, $path); $this->writeArrayInOutputFormat($input, $output, $result); - if (count($result)>0) { + if (count($result) > 0) { return 1; } return 0; diff --git a/core/Command/Integrity/CheckCore.php b/core/Command/Integrity/CheckCore.php index acbc69903c7..6f319abdf74 100644 --- a/core/Command/Integrity/CheckCore.php +++ b/core/Command/Integrity/CheckCore.php @@ -63,7 +63,7 @@ class CheckCore extends Base { protected function execute(InputInterface $input, OutputInterface $output): int { $result = $this->checker->verifyCoreSignature(); $this->writeArrayInOutputFormat($input, $output, $result); - if (count($result)>0) { + if (count($result) > 0) { return 1; } return 0; -- cgit v1.2.3