Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • ProcessPipe

Classes

  • Net\Bazzline\Component\ProcessPipe\Pipe

Interfaces

  • Net\Bazzline\Component\ProcessPipe\ExecutableInterface
  • Net\Bazzline\Component\ProcessPipe\PipeInterface

Exceptions

  • Net\Bazzline\Component\ProcessPipe\ExecutableException
  • Net\Bazzline\Component\ProcessPipe\InvalidArgumentException
  • Overview
  • Namespace
  • Class
 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);
} 
PHP Process Pipe Component by bazzline.net API documentation generated by ApiGen