1 | <?php declare(strict_types=1); |
||
11 | class GeoCoordinatesProcessManager implements EventListenerInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var CommandBusInterface |
||
15 | */ |
||
16 | private $commandBus; |
||
17 | |||
18 | public function __construct(CommandBusInterface $commandBus) |
||
22 | |||
23 | public function handle(DomainMessage $domainMessage) |
||
31 | |||
32 | public function dispatchUpdateGeoCoordinatesCommand(AddressUpdated $event): void |
||
41 | } |
||
42 |