1 | <?php |
||
10 | class SynchronousCommandBus implements CommandBus |
||
11 | { |
||
12 | protected $resolver; |
||
13 | |||
14 | public function __construct(CommandHandlerResolver $resolver = null) |
||
18 | |||
19 | /** |
||
20 | * Execute a command |
||
21 | * |
||
22 | * @param Command $command |
||
23 | * @return mixed |
||
24 | */ |
||
25 | public function execute(Command $command) |
||
31 | } |
||
32 |