Mnemo::_rsortByNotepad PHP Méthode

_rsortByNotepad() protected static méthode

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.
Résultat 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);
    }