Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-01-17 12:11:49 +01:00 committed by Vitor Mattos
parent ecb98f772e
commit c9f2f00777
No known key found for this signature in database
GPG key ID: B7AB4B76A7CA7318

View file

@ -108,7 +108,7 @@ class Manager implements ICommentsManager {
// Ordering does not work on the database with group concat and Oracle,
// So we simply sort on the output.
if (is_array($list)) {
uasort($list, static function($a, $b) {
uasort($list, static function ($a, $b) {
if ($a === $b) {
return 0;
}