Mnemo::_rsortByDesc PHP Method

_rsortByDesc() protected static method

Comparison function for reverse sorting notes by description.
protected static _rsortByDesc ( array $a, array $b ) : integer
$a array Note one.
$b array Note two.
return 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);
    }