From 5164f43bd36645fc274d6ab18ead37a906631fd4 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 2 Feb 2021 13:39:29 +0100 Subject: [PATCH] Fix linter Signed-off-by: Joas Schilling --- lib/private/Comments/Comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Comments/Comment.php b/lib/private/Comments/Comment.php index e2d32e7485..8517bef589 100644 --- a/lib/private/Comments/Comment.php +++ b/lib/private/Comments/Comment.php @@ -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 = [];