child-process
child-process copied to clipboard
Event-driven library for executing child processes with ReactPHP.
https://github.com/reactphp/child-process/blob/1721e2b93d89b745664353b9cfc8f155ba8a6159/src/Process.php#L133 Use the (string) cast instead
Fixes #116 The `Process::close()` method contains a block introducing side effects (see https://github.com/reactphp/child-process/blob/1721e2b93d89b745664353b9cfc8f155ba8a6159/src/Process.php#L300-L302). One of the possible side effects may be a repeated call to the `Process::close()` method. Due to...
Looping the process closing from its pipes causes a fatal error. For complex chains with guaranteed closing, the following error may occur: ```plaintext TypeError: proc_close(): Argument #1 ($process) must be...