diff options
author | Joas Schilling <coding@schilljs.com> | 2022-01-17 12:11:49 +0100 |
---|---|---|
committer | Vitor Mattos <vitor@php.rio> | 2022-01-21 08:39:40 -0300 |
commit | c9f2f0077745da8d0570b387557076ce9c948dc4 (patch) | |
tree | 1089c59c61402687e0fc494ba0f5e90781ccf65e /lib | |
parent | ecb98f772ef309678c983d4f5e1ed9988e9b6fcc (diff) | |
download | nextcloud-server-c9f2f0077745da8d0570b387557076ce9c948dc4.tar.gz nextcloud-server-c9f2f0077745da8d0570b387557076ce9c948dc4.zip |
Fix CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Comments/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Comments/Manager.php b/lib/private/Comments/Manager.php index eae84c14335..a8c4e2bf09e 100644 --- a/lib/private/Comments/Manager.php +++ b/lib/private/Comments/Manager.php @@ -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; } |