1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-11-07
*/
namespace Net\Bazzline\Component\ProcessPipe;
/**
* Interface PipeInterface
* @package Net\Bazzline\Component\ProcessPipe
*/
interface PipeInterface extends ExecutableInterface
{
/**
* Adds one or more process to the pipe
*
* @param ExecutableInterface $process - or more
* @param ExecutableInterface $_ [optional]
* @throws InvalidArgumentException
* @return $this
*/
public function pipe(ExecutableInterface $process, $_ = null);
}