for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Nwidart\LaravelBroadway\EventStore\Broadway\Drivers;
use Broadway\EventStore\InMemoryEventStore;
use Nwidart\LaravelBroadway\EventStore\Driver;
class Inmemory implements Driver
{
/**
* @return object
*/
public function getDriver()
return new InMemoryEventStore();
}