From 4ace7e421798f245dcdf2f3a23b357522ba22e04 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 7 Aug 2025 11:25:50 -0400 Subject: [PATCH] fix: cs Signed-off-by: Josh --- lib/public/AppFramework/App.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/public/AppFramework/App.php b/lib/public/AppFramework/App.php index b9a1b1dd83e..4d2d92ce08b 100644 --- a/lib/public/AppFramework/App.php +++ b/lib/public/AppFramework/App.php @@ -30,7 +30,10 @@ class App { * @param array $urlParams an array with variables extracted from the routes * @since 6.0.0 */ - public function __construct(private string $appName, array $urlParams = []) { + public function __construct( + private string $appName, + array $urlParams = [] + ) { $debugMode = Server::get(IConfig::class)->getSystemValueBool('debug'); $excludeArgsFromTraces = ini_get('zend.exception_ignore_args'); // Check if application class was setup incorrectly (and log it) when in debug mode