for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ackintosh\Snidel;
class Fork
{
/** @var int */
private $pid;
private $status;
/**
* @param int $pid
*/
public function __construct($pid)
$this->pid = $pid;
}
* set exit status
*
* @param int $status
* @return void
public function setStatus($status)
$this->status = $status;
* return pid
* @return int
public function getPid()
return $this->pid;
* return exit status
public function getStatus()
return $this->status;