We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
PostalCodeHelper::match('ze1 1aa', '', '/ZE[0-9]/i') won't work because
PostalCodeHelper::match('ze1 1aa', '', '/ZE[0-9]/i')
addressing/src/PostalCodeHelper.php
Line 47 in 32fba7d
/
The only solution I can think of at the moment is to change to:
$match = preg_match($rule, $postalCode); if ($match === FALSE) { $match = in_array($postalCode, self::buildList($rule)); }
Don't know if that would be acceptable?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
PostalCodeHelper::match('ze1 1aa', '', '/ZE[0-9]/i')
won't work becauseaddressing/src/PostalCodeHelper.php
Line 47 in 32fba7d
/
and ending with/
.The only solution I can think of at the moment is to change to:
Don't know if that would be acceptable?
The text was updated successfully, but these errors were encountered: