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