public static PhpBytes Append(object x, PhpBytes y) { Debug.Assert(!(x is PhpReference)); return(PhpBytes.Concat(Convert.ObjectToPhpBytes(x), y)); }
public static PhpBytes Concat(PhpBytes x, object y) { Debug.Assert(!(y is PhpReference)); return(PhpBytes.Concat(x, Convert.ObjectToPhpBytes(y))); }