toString() public method

Returns a string representation of the value.
public toString ( ) : string
return string string representation of the value.
Ejemplo n.º 1
0
 public static function index($list, $value)
 {
     if (!$list instanceof SassList) {
         $list = new SassList($list->toString());
     }
     return $list->index($value);
 }
 public static function append($list, $val, $sep = ', ')
 {
     if ($list instanceof SassString) {
         $list = new SassList($list->toString());
     }
     $list->append($val, $sep);
     return $list;
 }