From 5e7093069445c27425393cdfd0762c6dae5d9e4e Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Wed, 22 May 2024 16:36:46 +0200 Subject: [PATCH] Fix trailing commas --- src/Auth/Source/Radius.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/Source/Radius.php b/src/Auth/Source/Radius.php index 6928c85..9db6e18 100644 --- a/src/Auth/Source/Radius.php +++ b/src/Auth/Source/Radius.php @@ -113,7 +113,7 @@ public function __construct(array $info, array $config) $this->servers[] = [ 'hostname' => $this->hostname, 'port' => $this->port, - 'secret' => $this->secret + 'secret' => $this->secret, ]; } $this->debug = $cfg->getOptionalBoolean('debug', false);