public function SassString::toString in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/script/literals/SassString.php \SassString::toString()
Returns a string representation of the value.
Return value
string string representation of the value.
Overrides SassLiteral::toString
File
- phpsass/
script/ literals/ SassString.php, line 89
Class
- SassString
- SassString class. Provides operations and type testing for Sass strings. @package PHamlP @subpackage Sass.script.literals
Code
public function toString() {
return $this->quote . $this->value . $this->quote;
}