for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Workana\AsyncJobs\Formatter;
/**
* Root formatter
*
* @author Carlos Frutos <[email protected]>
*/
class Formatter extends AggregateFormatter
{
public function __construct()
parent::__construct();
$this->addFormatter(new AggregateChildEventExceptionFormatter(), 1);
$this->addFormatter(new QueueableEntityFormatter(), 1);
$this->addFormatter(new AsyncEventFormatter(), 1);
$this->addFormatter(new AsyncActionFormatter(), 0);
$this->addFormatter(new ExecutionInfoFormatter(), 0);
$this->addFormatter(new ExceptionFormatter(), 0);
$this->addFormatter(new ValueFormatter(), -1);
}