Dumplie\Customer\Application\Command\ChangeBillingAddress::__construct PHP Method

__construct() public method

public __construct ( string $cartId, string $name, string $street, string $postCode, string $city, string $countryIso2Code )
$cartId string
$name string
$street string
$postCode string
$city string
$countryIso2Code string
    public function __construct(string $cartId, string $name, string $street, string $postCode, string $city, string $countryIso2Code)
    {
        $this->cartId = $cartId;
        $this->name = $name;
        $this->street = $street;
        $this->postCode = $postCode;
        $this->city = $city;
        $this->countryIso2Code = $countryIso2Code;
    }
ChangeBillingAddress