| 1 | <?php |
||
| 13 | class PassToAnotherCommandBusMiddleware implements Middleware |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var CommandBus |
||
| 17 | */ |
||
| 18 | private $commandBus; |
||
| 19 | |||
| 20 | public function __construct(CommandBus $commandBus) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param object $command |
||
| 27 | * @param callable $next |
||
| 28 | * |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function execute($command, callable $next) |
||
| 35 | } |
||
| 36 |