You are here

protected function SassNestedRenderer::end in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/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 phpsass/renderers/SassNestedRenderer.php
Renders a directive.

File

phpsass/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";
}