for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the asm\php-ansible package.
*
* (c) Marc Aschmann <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Asm\Ansible\Process;
use Symfony\Component\Process\Process;
/**
* @package Asm\Ansible\Process
* @author Marc Aschmann <[email protected]>
interface ProcessBuilderInterface
{
* @param array $arguments arguments for process generation
* @return ProcessBuilderInterface
public function setArguments(array $arguments): ProcessBuilderInterface;
* @param int $timeout
public function setTimeout(int $timeout): ProcessBuilderInterface;
* @return Process
public function getProcess(): Process;
}