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 ExceptionFormatter implements FormatterInterface
{
* @param \Exception $exception
* @return string
public function format($exception)
$text = "$exception\n";
return $text;
}