1 | <?php |
||
17 | class CommandMiddlewareHandler implements MiddlewareHandler |
||
18 | { |
||
19 | /** |
||
20 | * @var CommandBus |
||
21 | */ |
||
22 | private $bus; |
||
23 | |||
24 | /** |
||
25 | * @param CommandBus $bus |
||
26 | */ |
||
27 | public function __construct(CommandBus $bus) |
||
31 | |||
32 | /** |
||
33 | * @param mixed $message |
||
34 | * @param callable $next |
||
35 | * |
||
36 | * @return mixed |
||
37 | */ |
||
38 | public function handle($message, callable $next) |
||
46 | } |
||
47 |