Skip to content

Instantly share code, notes, and snippets.

@stefpe
stefpe / async_process.php
Last active February 15, 2021 20:33
async_process.php
<?php
class AsyncProcess
{
private int $pid;
private string $command;
/**
* AsyncProcess constructor.
* @param string $command
*/