You are here

public function SassString::toString in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/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

phamlp/sass/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;
}