1 | <?php |
||
23 | class SimpleBusUserCommandBus implements UserCommandBus |
||
24 | { |
||
25 | /** |
||
26 | * The message bus. |
||
27 | * |
||
28 | * @var MessageBus |
||
29 | */ |
||
30 | private $messageBus; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | * |
||
35 | * @param MessageBus $aMessageBus The message bus |
||
36 | */ |
||
37 | public function __construct(MessageBus $aMessageBus) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function handle($aCommand) |
||
49 | } |
||
50 |