Dumplie\Customer\Application\Command\ChangeShippingAddressHandler::handle PHP Method

handle() public method

public handle ( ChangeShippingAddress $command )
$command ChangeShippingAddress
    public function handle(ChangeShippingAddress $command)
    {
        $shippingAddress = new Address($command->name(), $command->street(), $command->postCode(), $command->city(), $command->countryIso2Code());
        $checkout = $this->checkouts->getForCart(new CartId($command->cartId()));
        $checkout->changeShippingAddress($shippingAddress);
    }
ChangeShippingAddressHandler