You are here

protected function SassExpandedRenderer::end in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/renderers/SassExpandedRenderer.php \SassExpandedRenderer::end()

Renders the brace at the end of the rule

Return value

string the brace between the rule and its properties

Overrides SassCompactRenderer::end

1 method overrides SassExpandedRenderer::end()
SassNestedRenderer::end in phpsass/renderers/SassNestedRenderer.php
Renders the brace at the end of the rule

File

phpsass/renderers/SassExpandedRenderer.php, line 35

Class

SassExpandedRenderer
SassExpandedRenderer class. Expanded is the typical human-made CSS style, with each property and rule taking up one line. Properties are indented within the rules, but the rules are not indented in any special way. @package PHamlP @subpackage …

Code

protected function end() {
  return "\n}\n\n";
}