596061626364656667
_env.addCleanup(this); _process = process; _os = new WriteStream(new VfsStream(null, _process.getOutputStream())); _process.getInputStream().close(); }
37383940414243
*/ public class PhpStdin extends AbstractBinaryInput { public PhpStdin(Env env) { super(env, new ReadStream(new VfsStream(System.in, null))); }
62636465666768
_env = env; if (is instanceof ReadStream) init((ReadStream) is); else if (is != null) init(new ReadStream(new VfsStream(is, null))); }
585960616263646566
_env.addCleanup(this); _process = process; init(new ReadStream(new VfsStream(_process.getInputStream(), null))); _process.getOutputStream().close(); }
65666768697071
_env = env; _in = in; env.addCleanup(this); init(new ReadStream(new VfsStream(in, null))); }
84858687888990
_out = out; env.addCleanup(this); init(new ReadStream(new VfsStream(in, null))); }
59606162636465
{ _env = env; _env.addCleanup(this); _os = new WriteStream(new VfsStream(null, out)); }