Mnemo::_rsortByNotepad PHP Method

_rsortByNotepad() protected static method

Comparison function for reverse sorting notes by notepad name.
protected static _rsortByNotepad ( 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 _rsortByNotepad($a, $b)
    {
        return self::_sortByNotepad($b, $a);
    }