DmitryDulepov\Realurl\Encoder\UrlEncoder::encodeUrlParameterBlockUseAsIs PHP Method

encodeUrlParameterBlockUseAsIs() protected method

Just sets the value to the segment as is.
protected encodeUrlParameterBlockUseAsIs ( string $getVarName, string $getVarValue, array $configuration, array &$segments, string &$previousValue ) : boolean
$getVarName string
$getVarValue string
$configuration array
$segments array
$previousValue string
return boolean
    protected function encodeUrlParameterBlockUseAsIs($getVarName, $getVarValue, array $configuration, array &$segments, &$previousValue)
    {
        $previousValue = $getVarValue;
        $segments[] = rawurlencode($getVarValue);
        return TRUE;
    }