Dumplie\CustomerService\Application\Command\PrepareOrderHandler::handle PHP Method

handle() public method

public handle ( PrepareOrder $command )
$command PrepareOrder
    public function handle(PrepareOrder $command)
    {
        $order = $this->orders->getById(new OrderId($command->orderId()));
        $order->prepare();
    }
PrepareOrderHandler