Append() public method

public Append ( PhpString value ) : void
value PhpString
return void
Beispiel #1
0
            public PhpString Serialize(PhpValue value)
            {
                _output = new PhpString();
                _indent = 0;

                //
                Accept(value);
                _output.Append(_nl);

                return _output;
            }