public static function ascSort()

in php/src/ArrayUtil.php [118:125]


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