
| Current Path : /var/www/html/store/vendor/commerceguys/addressing/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/vendor/commerceguys/addressing/src/ImmutableAddressInterface.php |
<?php
namespace CommerceGuys\Addressing;
/**
* Interface for immutable postal addresses.
*
* Extends the base interface with PSR-7 style with* mutators.
* Each returns a new instance with the changed state.
*/
interface ImmutableAddressInterface extends AddressInterface
{
/**
* Returns an instance with the specified two-letter country code.
*
* @param string $countryCode The two-letter country code.
*
* @return self A clone of $this.
*/
public function withCountryCode($countryCode);
/**
* Returns an instance with the specified administrative area.
*
* @param string $administrativeArea The administrative area.
*/
public function withAdministrativeArea($administrativeArea);
/**
* Returns an instance with the specified locality.
*
* @param string $locality The locality.
*
* @return self A clone of $this.
*/
public function withLocality($locality);
/**
* Returns an instance with the specified dependent locality.
*
* @param string $dependentLocality The dependent locality.
*
* @return self A clone of $this.
*/
public function withDependentLocality($dependentLocality);
/**
* Returns an instance with the specified postal code.
*
* @param string $postalCode The postal code.
*
* @return self A clone of $this.
*/
public function withPostalCode($postalCode);
/**
* Returns an instance with the specified sorting code.
*
* @param string $sortingCode The sorting code.
*
* @return self A clone of $this.
*/
public function withSortingCode($sortingCode);
/**
* Returns an instance with the specified first line of address block.
*
* @param string $addressLine1 The first line of the address block.
*
* @return self A clone of $this.
*/
public function withAddressLine1($addressLine1);
/**
* Returns an instance with the specified second line of address block.
*
* @param string $addressLine2 The second line of the address block.
*
* @return self A clone of $this.
*/
public function withAddressLine2($addressLine2);
/**
* Returns an instance with the specified organization.
*
* @param string $organization The organization.
*
* @return self A clone of $this.
*/
public function withOrganization($organization);
/**
* Returns an instance with the specified given name.
*
* @param string $givenName The given name.
*
* @return self A clone of $this.
*/
public function withGivenName($givenName);
/**
* Returns an instance with the specified additional name.
*
* @param string $additionalName The additional name.
*
* @return self A clone of $this.
*/
public function withAdditionalName($additionalName);
/**
* Returns an instance with the specified family name.
*
* @param string $familyName The family name.
*
* @return self A clone of $this.
*/
public function withFamilyName($familyName);
/**
* Returns an instance with the specified locale.
*
* @param string $locale The locale.
*
* @return self A clone of $this.
*/
public function withLocale($locale);
}