Horde_Pear_Package_Dependencies::_completeMax PHP Method

_completeMax() private static method

Complete "max" version information.
private static _completeMax ( array $input, &$element ) : boolean
$input array The input array.
return boolean True if the was "max" information available.
    private static function _completeMax($input, &$element)
    {
        if (isset($input['max'])) {
            $element['rel'] = 'le';
            $element['version'] = $input['max'];
            return true;
        }
        return false;
    }