protected function SassNestedRenderer::end in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/renderers/SassNestedRenderer.php \SassNestedRenderer::end()
* Renders the brace at the end of the rule *
Return value
string the brace between the rule and its properties
Overrides SassExpandedRenderer::end
1 call to SassNestedRenderer::end()
- SassNestedRenderer::renderDirective in phamlp/
sass/ renderers/ SassNestedRenderer.php - * Renders a directive. *
File
- phamlp/
sass/ renderers/ SassNestedRenderer.php, line 28
Class
- SassNestedRenderer
- SassNestedRenderer class. Nested style is the default Sass style, because it reflects the structure of the document in much the same way Sass does. Each rule is indented based on how deeply it's nested. Each property has its own line and is…
Code
protected function end() {
return " }\n";
}