for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dock\IO;
use Symfony\Component\Process\Process;
class SilentProcessRunner implements ProcessRunner
{
/**
* {@inheritdoc}
*/
public function run($command, $mustSucceed = true)
$process = new Process($command);
if ($mustSucceed) {
$process->setTimeout(null);
return $process->mustRun();
}
$process->run();
return $process;
public function followsUpWith($command, array $arguments = [])
pcntl_exec($command, $arguments);