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