for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Glooby\Debug\Writer;
/**
* @author Emil Kilhage
*/
trait WriterAwareTrait
{
* @var WriterInterface
protected $writer;
* @param WriterInterface $writer
public function setWriter(WriterInterface $writer)
$this->writer = $writer;
}