aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2025-02-24 09:31:05 +0100
committerAndy Scherzinger <info@andy-scherzinger.de>2025-02-25 22:18:18 +0100
commit1b818382ba7788c05912dab2d7e77b05c3a5be14 (patch)
treeb66b1f265dba43049af2f13d1d1c12ed8ff3c4af
parent36d756ab0f3cf8a6037b050015073245719fcccc (diff)
downloadnextcloud-server-1b818382ba7788c05912dab2d7e77b05c3a5be14.tar.gz
nextcloud-server-1b818382ba7788c05912dab2d7e77b05c3a5be14.zip
chore: style fix for named parameter
Co-authored-by: Arthur Schiwon <blizzz@arthur-schiwon.de> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
-rw-r--r--apps/user_ldap/ajax/testConfiguration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/ajax/testConfiguration.php b/apps/user_ldap/ajax/testConfiguration.php
index 4cf7bb1ba65..b77439fa3e8 100644
--- a/apps/user_ldap/ajax/testConfiguration.php
+++ b/apps/user_ldap/ajax/testConfiguration.php
@@ -30,7 +30,7 @@ try {
$conf['ldap_configuration_active'] = '1';
}
try {
- $connection->setConfiguration($conf, throw:true);
+ $connection->setConfiguration($conf, throw: true);
} catch (ConfigurationIssueException $e) {
$configurationError = $e->getHint();
}