Dumplie\CustomerService\Application\Command\PrepareOrderHandler::handle PHP 메소드

handle() 공개 메소드

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