mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix linter
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
86109f77e0
commit
98032425b4
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ class Comment implements IComment {
|
|||
return [];
|
||||
}
|
||||
$uids = array_unique($mentions[0]);
|
||||
usort($uids, static function($uid1, $uid2) {
|
||||
usort($uids, static function ($uid1, $uid2) {
|
||||
return mb_strlen($uid2) <=> mb_strlen($uid1);
|
||||
});
|
||||
$result = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue