Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen authored and rullzer committed Feb 6, 2021
1 parent 86109f7 commit 9803242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Comments/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function getMentions() {
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 = [];
Expand Down

0 comments on commit 9803242

Please sign in to comment.