You are here

public function SassString::getValue in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/script/literals/SassString.php \SassString::getValue()

* Returns the value of this string. *

Return value

string the string

Overrides SassLiteral::getValue

File

phamlp/sass/script/literals/SassString.php, line 81

Class

SassString
SassString class. Provides operations and type testing for Sass strings. @package PHamlP @subpackage Sass.script.literals

Code

public function getValue() {
  return $this->value;
}