Relax\Greppy\Pattern\Element\Literal::__toString PHP Method

__toString() public method

Gets the string representation of the element for usage inside patterns.
public __toString ( ) : mixed
return mixed
    public function __toString()
    {
        if (ctype_alnum($this->literal)) {
            return $this->literal;
        }
        return sprintf("\\%s", $this->literal);
    }