| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class Pipeline extends AbstractCollection |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param string|ShellInterface $command |
||
| 20 | * @return $this |
||
| 21 | * @throws ShellBuilderException |
||
| 22 | */ |
||
| 23 | public static function pipe($command): self |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string|ShellInterface $command |
||
| 32 | * @return $this |
||
| 33 | * @throws ShellBuilderException |
||
| 34 | */ |
||
| 35 | public static function pipeErrorForward($command): self |
||
| 42 |