for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Protoku\Console;
use Symfony\Component\Console\Output\OutputInterface;
trait OutputAwareTrait
{
/**
* @var OutputInterface
*/
protected $output;
* Set an output.
*
* @param OutputInterface $output
* @return $this
public function setOutput(OutputInterface $output)
$this->output = $output;
return $this;
}
* Get the output.
* @return OutputInterface
public function getOutput()
return $this->output;