Address Book
The Addresses Collection on a Customer
class Customer {
/**
* @var Collection|AddressInterface[]
*/
protected $addresses;
}How to add an address to the address book manually?
/** @var AddressInterface $address */
$address = $this->container->get('sylius.factory.address')->createNew();
$address->setFirstName('Ronald');
$address->setLastName('Weasley');
$address->setCompany('Ministry of Magic');
$address->setCountryCode('UK');
$address->setProvinceCode('UKJ');
$address->setCity('Otter St Catchpole');
$address->setStreet('The Burrow');
$address->setPostcode('000001');Last updated
Was this helpful?
