for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bdf\QueueBundle\Tests\Fixtures;
class TestHandler
{
public $messages = [];
public function __invoke($message)
$this->messages[] = $message;
}