Commit c40ab860 authored by git's avatar git Committed by Joseph Olstad
Browse files

Issue #3226290 by mairo20: Returning bool from comparison function is deprecated

parent 8ebf49b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ class TagService implements TagServiceInterface {
   *   comparision result.
   */
  private static function sortByCount($a, $b) {
    return $a->count > $b->count;
    return $a->count <=> $b->count;
  }

}