aboutsummaryrefslogtreecommitdiffstats
path: root/apps/admin_audit
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-03-28 16:13:19 +0100
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-04-04 11:45:22 +0200
commit0b332ceac24ee93e82e25ee95841ae6fae3b889b (patch)
tree5c33219f115c05a17cec25e2122ff1cae352e86f /apps/admin_audit
parent292b903bc283c5a7929e092d8262331606461ef7 (diff)
downloadnextcloud-server-0b332ceac24ee93e82e25ee95841ae6fae3b889b.tar.gz
nextcloud-server-0b332ceac24ee93e82e25ee95841ae6fae3b889b.zip
fix: Apply new coding standard to all files
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/admin_audit')
-rw-r--r--apps/admin_audit/lib/AuditLogger.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/admin_audit/lib/AuditLogger.php b/apps/admin_audit/lib/AuditLogger.php
index c3265737409..fa33e828bfd 100644
--- a/apps/admin_audit/lib/AuditLogger.php
+++ b/apps/admin_audit/lib/AuditLogger.php
@@ -49,39 +49,39 @@ class AuditLogger implements IAuditLogger {
$this->parentLogger = $logFactory->getCustomPsrLogger($logFile, $auditType, $auditTag);
}
- public function emergency($message, array $context = array()): void {
+ public function emergency($message, array $context = []): void {
$this->parentLogger->emergency($message, $context);
}
- public function alert($message, array $context = array()): void {
+ public function alert($message, array $context = []): void {
$this->parentLogger->alert($message, $context);
}
- public function critical($message, array $context = array()): void {
+ public function critical($message, array $context = []): void {
$this->parentLogger->critical($message, $context);
}
- public function error($message, array $context = array()): void {
+ public function error($message, array $context = []): void {
$this->parentLogger->error($message, $context);
}
- public function warning($message, array $context = array()): void {
+ public function warning($message, array $context = []): void {
$this->parentLogger->warning($message, $context);
}
- public function notice($message, array $context = array()): void {
+ public function notice($message, array $context = []): void {
$this->parentLogger->notice($message, $context);
}
- public function info($message, array $context = array()): void {
+ public function info($message, array $context = []): void {
$this->parentLogger->info($message, $context);
}
- public function debug($message, array $context = array()): void {
+ public function debug($message, array $context = []): void {
$this->parentLogger->debug($message, $context);
}
- public function log($level, $message, array $context = array()): void {
+ public function log($level, $message, array $context = []): void {
$this->parentLogger->log($level, $message, $context);
}
}