ncuesta/Clinner

Improve Commands API

Closed this issue · 0 comments

Command class's pipe() method should make chaining commands easier and more clear to read. Something like:

<?php

$command1
    ->pipe($command2)
    ->pipe($command3)
    ->pipe($command4);