From 7cdf3c83e81d694cf9dbe3842f2f068cdd7acfce Mon Sep 17 00:00:00 2001
From: Benjamin Brahmer <info@b-brahmer.de>
Date: Thu, 2 Mar 2023 16:44:46 +0100
Subject: [PATCH] fix style

Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
---
 lib/Migration/RemoveUnusedJob.php | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/lib/Migration/RemoveUnusedJob.php b/lib/Migration/RemoveUnusedJob.php
index b0202f5a4..cb5c5fecc 100644
--- a/lib/Migration/RemoveUnusedJob.php
+++ b/lib/Migration/RemoveUnusedJob.php
@@ -10,12 +10,12 @@ class RemoveUnusedJob implements IRepairStep
 {
     
     /**
-     * @var LoggerInterface 
+     * @var LoggerInterface
      */
     protected $logger;
     
     /**
-     * @var IJobList 
+     * @var IJobList
      */
     protected $joblist;
     
@@ -39,13 +39,12 @@ class RemoveUnusedJob implements IRepairStep
      */
     public function run(IOutput $output)
     {
-        if($this->joblist->has("OCA\News\Cron\Updater", null)){
+        if ($this->joblist->has("OCA\News\Cron\Updater", null)) {
             $output->info("Job exists, attempting to remove");
             $this->joblist->remove("OCA\News\Cron\Updater");
             $output->info("Job removed");
         } else {
             $output->info("Job does not exist, all good");
         }
-        
     }
-}
\ No newline at end of file
+}