for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jellyfish\ProcessSymfony;
use Jellyfish\Process\ProcessFactoryInterface;
use Jellyfish\Process\ProcessInterface;
class ProcessFactory implements ProcessFactoryInterface
{
/**
* @param array $command
*
* @return \Jellyfish\Process\ProcessInterface
*/
public function create(array $command): ProcessInterface
return new Process($command);
}