diff options
author | Josh <josh.t.richards@gmail.com> | 2025-08-07 11:25:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-07 11:25:50 -0400 |
commit | 4ace7e421798f245dcdf2f3a23b357522ba22e04 (patch) | |
tree | af401b8b1e70b998c5ce47e95f44234e4c0f5150 | |
parent | 1097c3b20185c74b47f0073efdfdd3b9f8b5595a (diff) | |
download | nextcloud-server-jtr-refactor-pub-app.tar.gz nextcloud-server-jtr-refactor-pub-app.zip |
fix: csjtr-refactor-pub-app
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | lib/public/AppFramework/App.php | 5 |
1 files changed, 4 insertions, 1 deletions
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 |