Skip to content

Commit

Permalink
Fix trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed May 22, 2024
1 parent 09570f6 commit 5e70930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Source/Radius.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5e70930

Please sign in to comment.