Neos\Eel\Context::__toString PHP 메소드

__toString() 공개 메소드

public __toString ( ) : string
리턴 string
    public function __toString()
    {
        if (is_object($this->value) && !method_exists($this->value, '__toString')) {
            return '[object ' . get_class($this->value) . ']';
        }
        return (string) $this->value;
    }