Devise\Support\Sortable\Filter::getAttributesFromOptions PHP Method

getAttributesFromOptions() private method

Get the attributes as a string from the options array
private getAttributesFromOptions ( array $options ) : string
$options array
return string
    private function getAttributesFromOptions($options)
    {
        $attributes = '';
        foreach ($options as $optionName => $optionValue) {
            $attributes .= " {$optionName} = \"{$optionValue}\"";
        }
        return $attributes;
    }