for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MyOnlineStore\Bundle\RabbitMqManagerBundle\Process;
use Symfony\Component\Process\Process as SymfonyProcess;
class ProcessFactory implements ProcessFactoryInterface
{
/**
* @inheritdoc
*/
public function create($commandLine, $cwd = null, array $env = null, $input = null, $timeout = 60, array $options = [])
return new Process(
$commandLine,
$cwd,
$env,
$input,
$timeout,
$options
);
}
public function createFromProcess(SymfonyProcess $process)
$process->getCommandLine(),
$process->getWorkingDirectory(),
$process->getEnv(),
$process->getInput(),
$process->getTimeout(),
$process->getOptions()