public static function descSort()

in php/src/ArrayUtil.php [132:140]


    public static function descSort($raw)
    {
        if (!isset($raw)) {
            throw new \InvalidArgumentException('not a valid value for parameter');
        }

        rsort($raw);
        return $raw;
    }