Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
getDefaultPostalCodePattern example
->
setCode
(
NotBlank::IS_BLANK_ERROR
)
->
addViolation
(
)
;
return
;
}
}
if
(
!
$country
->
getCheckPostalCodePattern
(
)
&& !
$country
->
getCheckAdvancedPostalCodePattern
(
)
)
{
return
;
}
$pattern
=
$country
->
getDefaultPostalCodePattern
(
)
;
if
(
$country
->
getCheckAdvancedPostalCodePattern
(
)
)
{
$pattern
=
$country
->
getAdvancedPostalCodePattern
(
)
;
}
if
(
$pattern
=== null
)
{
return
;
}
$caseSensitive
=
$constraint
->caseSensitiveCheck ? '' : 'i';