protected function SassCompactRenderer::end in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/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 phpsass/
renderers/ SassExpandedRenderer.php - Renders the brace at the end of the rule
File
- phpsass/
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 them. @package PHamlP @subpackage …
Code
protected function end() {
return " }\n";
}