private function CSSmin::lowercase_properties in Advanced CSS/JS Aggregation 8.3
Same name and namespace in other branches
- 8.2 advagg_css_minify/yui/CSSMin.inc \CSSmin::lowercase_properties()
File
- advagg_css_minify/
yui/ CSSMin.inc, line 694
Class
Code
private function lowercase_properties($matches) {
return $matches[1] . strtolower($matches[2]) . $matches[3];
}