for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Glooby\Debug\Formatter;
/**
* @author Emil Kilhage
*/
class PrintrFormatter implements FormatterInterface
{
* {@inheritdoc}
public function format($response)
return print_r($response, true);
}