public static function get()

in php/src/ArrayUtil.php [74:81]


    public static function get($raw, $index)
    {
        if (!isset($raw) || $index < 0 || $index >= count($raw)) {
            throw new \InvalidArgumentException('not a valid value for parameter');
        }

        return $raw[$index];
    }