| 1 | <?php |
||
| 13 | final class StrongConsistencyCommandBusMiddleware implements CommandBusMiddleware |
||
| 14 | { |
||
| 15 | /** @var string */ |
||
| 16 | private $lastCommandId; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param $command |
||
| 20 | * @param callable $next |
||
| 21 | * @return mixed |
||
| 22 | */ |
||
| 23 | public function execute(Command $command, callable $next) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getLastCommandId() |
||
| 36 | } |
||
| 37 |