aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2025-08-07 11:25:50 -0400
committerGitHub <noreply@github.com>2025-08-07 11:25:50 -0400
commit4ace7e421798f245dcdf2f3a23b357522ba22e04 (patch)
treeaf401b8b1e70b998c5ce47e95f44234e4c0f5150
parent1097c3b20185c74b47f0073efdfdd3b9f8b5595a (diff)
downloadnextcloud-server-jtr-refactor-pub-app.tar.gz
nextcloud-server-jtr-refactor-pub-app.zip
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r--lib/public/AppFramework/App.php5
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