From f1c6c63bfc627aa23db66de57d0e43d212ecf0a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9=20Costa?= Date: Mon, 27 Nov 2023 12:05:18 +0100 Subject: [PATCH] style(desktop-notifications): code style fixup Fixed code style to respect PSR-12 guidelines. --- application/controllers/DaemonController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/DaemonController.php b/application/controllers/DaemonController.php index 468428ca9..a7951c452 100644 --- a/application/controllers/DaemonController.php +++ b/application/controllers/DaemonController.php @@ -33,7 +33,7 @@ public function scriptAction(): void '%x-%x-%x', $fileStat['ino'], $fileStat['size'], - (float)str_pad($fileStat['mtime'], 16, '0') + (float) str_pad($fileStat['mtime'], 16, '0') ); $this->getResponse()->setHeader( @@ -52,4 +52,4 @@ public function scriptAction(): void ->setBody(file_get_contents($filePath)); } } -} \ No newline at end of file +}