Skip to content

Commit

Permalink
Allow hideStdout / hideStderr to be chained
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Oct 31, 2018
1 parent 3d8cf21 commit 3d5cf32
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Util/RealtimeOutputHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public function hideStdout()
{
$this->stdout = new NullOutput();
$this->stdoutMarker = '';
return $this;
}

/**
Expand All @@ -83,6 +84,7 @@ public function hideStderr()
{
$this->stderr = new NullOutput();
$this->stderrMarker = '';
return $this;
}

/**
Expand Down

0 comments on commit 3d5cf32

Please sign in to comment.