for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\CLImate\Util;
trait OutputImporter
{
/**
* An instance of the OutputFactory
*
* @var \League\CLImate\Util\Output $output
*/
protected $output;
* Sets the $output property
* @param Output $output
public function output(Output $output)
$this->output = $output;
}