SassScriptOperation::__toString PHP Method

__toString() public method

Converts the operation back into it's SASS representation
public __toString ( )
    public function __toString()
    {
        foreach (SassScriptOperation::$operators as $char => $operator) {
            if ($operator[0] == trim($this->operator)) {
                return $char;
            }
        }
    }