Phulp\PipeInterface::execute PHP Метод

execute() публичный Метод

public execute ( Source $source )
$source Source
    public function execute(Source $source);

Usage Example

Пример #1
0
 /**
  * @param PipeInterface $pipe
  *
  * @return self
  */
 public function pipe(PipeInterface $pipe)
 {
     $pipe->execute($this);
     return $this;
 }
PipeInterface