protected function SassCompactRenderer::end in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/renderers/SassCompactRenderer.php \SassCompactRenderer::end()
* Renders the brace at the end of the rule *
Return value
string the brace between the rule and its properties
Overrides SassCompressedRenderer::end
1 method overrides SassCompactRenderer::end()
- SassExpandedRenderer::end in phamlp/
sass/ renderers/ SassExpandedRenderer.php - * Renders the brace at the end of the rule *
File
- phamlp/
sass/ renderers/ SassCompactRenderer.php, line 38
Class
- SassCompactRenderer
- SassCompactRenderer class. Each CSS rule takes up only one line, with every property defined on that line. Nested rules are placed next to each other with no newline, while groups of rules have newlines between…
Code
protected function end() {
return " }\n";
}