Skip to content

Commit

Permalink
Add trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Aug 19, 2024
1 parent 24aad34 commit cf30b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth/Source/Htpasswd.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ protected function login(
if ($cryptoUtils->secureCompare($crypted, crypt($password, $crypted))) {
Logger::debug('User ' . $username . ' authenticated successfully');
Logger::warning(
'CRYPT authentication is insecure. Please consider using something else.'
'CRYPT authentication is insecure. Please consider using something else.',
);
return $attributes;
}
Expand All @@ -112,7 +112,7 @@ protected function login(
if (APR1_MD5::check($password, $crypted)) {
Logger::debug('User ' . $username . ' authenticated successfully');
Logger::warning(
'APR1 authentication is insecure. Please consider using something else.'
'APR1 authentication is insecure. Please consider using something else.',
);
return $attributes;
}
Expand Down

0 comments on commit cf30b40

Please sign in to comment.