We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9a444 commit f742843Copy full SHA for f742843
src/Templates/Validator/PatternProperties.phptpl
@@ -6,8 +6,9 @@
6
$rollbackValues = $this->_patternProperties;
7
8
foreach ($properties as $propertyKey => $value) {
9
+ $propertyKey = (string) $propertyKey;
10
try {
- if (!preg_match(base64_decode('{{ pattern }}'), (string) $propertyKey)) {
11
+ if (!preg_match(base64_decode('{{ pattern }}'), $propertyKey)) {
12
continue;
13
}
14
0 commit comments