PhpCss\Scanner\Token::__toString PHP Method

__toString() public method

Convert token object to string
public __toString ( ) : string
return string
    public function __toString()
    {
        return 'TOKEN::' . self::typeToString($this->type) . ' @' . $this->position . ' ' . $this->quoteContent($this->content);
    }