You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote my own Process class on top of proc_open() before I found the Process component of Symfony2. My class provides a kill($signal = 15) method that simply invokes proc_terminate($this->resource, $signal);
My use was I needed to be able to send the HUP signal.
If these seems useful I will create a pull request.