Flow2Lab/EventSourcing

View on GitHub
Classes/Flow2Lab/EventSourcing/Event/Handler/ImmediateEventHandlerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Flow2Lab\EventSourcing\Event\Handler;

/**
 * EventHandlers implementing this interface will receive all published events synchronously
 */
interface ImmediateEventHandlerInterface extends EventHandlerInterface
{
}