Mnemo::_rsortByDesc PHP Метод

_rsortByDesc() защищенный статический Метод

Comparison function for reverse sorting notes by description.
protected static _rsortByDesc ( array $a, array $b ) : integer
$a array Note one.
$b array Note two.
Результат integer -1 if note one is greater, 1 if note two is greater; 0 if they are equal.
    protected static function _rsortByDesc($a, $b)
    {
        return self::_sortByDesc($b, $a);
    }