You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the first parameter of MessyPhysicalAddress already contains the City/Region/Country and these parameters are passed again, the string representation of the address will be wrong.
Example
$address = newMessyPhysicalAddress('Morristown, Nj', newCity('Morristown'), newRegion('NJ'));
print($address); // "Morristown, Nj, Morristown, Nj". Should be "Morristown, Nj".