Skip to content

Instantly share code, notes, and snippets.

@basz
Created May 6, 2016 12:17
Show Gist options
  • Select an option

  • Save basz/fe079b3ef364a245dea401a93af34afd to your computer and use it in GitHub Desktop.

Select an option

Save basz/fe079b3ef364a245dea401a93af34afd to your computer and use it in GitHub Desktop.
public static function from(
$addressee = null,
$street = null,
string $streetOrdinality = null,
string $streetOrdinalitySuffix = null,
string $postalCode = null,
string $populatedPlace = null,
string $country = null,
string $countryRegion = null,
string $geoLocation = null
): Address
{
if ($country) {
$country = Country::fromString($country);
}
public static function from(
$addressee = null,
$street = null,
string $streetOrdinality = null,
string $streetOrdinalitySuffix = null,
string $postalCode = null,
string $populatedPlace = null,
string $country = null,
string $countryRegion = null,
string $geoLocation = null
): Address {
if ($country) {
$country = Country::fromString($country);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment