protected function SassCompressedRenderer::end in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/renderers/SassCompressedRenderer.php \SassCompressedRenderer::end()
Renders the brace at the end of the rule
Return value
string the brace between the rule and its properties
2 calls to SassCompressedRenderer::end()
- SassCompressedRenderer::renderDirective in phpsass/
renderers/ SassCompressedRenderer.php - Renders a directive.
- SassCompressedRenderer::renderRule in phpsass/
renderers/ SassCompressedRenderer.php - Renders a rule.
1 method overrides SassCompressedRenderer::end()
- SassCompactRenderer::end in phpsass/
renderers/ SassCompactRenderer.php - Renders the brace at the end of the rule
File
- phpsass/
renderers/ SassCompressedRenderer.php, line 32
Class
- SassCompressedRenderer
- SassCompressedRenderer class. Compressed style takes up the minimum amount of space possible, having no whitespace except that necessary to separate selectors and a newline at the end of the file. It's not meant to be human-readable @package …
Code
protected function end() {
return '}';
}