You are here

protected function SassCompressedRenderer::end in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/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 phamlp/sass/renderers/SassCompressedRenderer.php
* Renders a directive. *
SassCompressedRenderer::renderRule in phamlp/sass/renderers/SassCompressedRenderer.php
* Renders a rule. *
1 method overrides SassCompressedRenderer::end()
SassCompactRenderer::end in phamlp/sass/renderers/SassCompactRenderer.php
* Renders the brace at the end of the rule *

File

phamlp/sass/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…

Code

protected function end() {
  return '}';
}