|
@@ 233-235 (lines=3) @@
|
| 230 |
|
if (!empty($matches['unescapedValue'][$key])) { |
| 231 |
|
$chunk[$paramName] = floatval($matches['unescapedValue'][$key]); |
| 232 |
|
} |
| 233 |
|
if (!empty($matches['escapedDefault'][$key])) { |
| 234 |
|
$chunk[$paramName . '-default'] = strval($matches['escapedDefault'][$key]); |
| 235 |
|
} |
| 236 |
|
if (!empty($matches['unescapedDefault'][$key])) { |
| 237 |
|
$chunk[$paramName . '-default'] = floatval($matches['unescapedDefault'][$key]); |
| 238 |
|
} |
|
@@ 236-238 (lines=3) @@
|
| 233 |
|
if (!empty($matches['escapedDefault'][$key])) { |
| 234 |
|
$chunk[$paramName . '-default'] = strval($matches['escapedDefault'][$key]); |
| 235 |
|
} |
| 236 |
|
if (!empty($matches['unescapedDefault'][$key])) { |
| 237 |
|
$chunk[$paramName . '-default'] = floatval($matches['unescapedDefault'][$key]); |
| 238 |
|
} |
| 239 |
|
} |
| 240 |
|
return $chunk; |
| 241 |
|
} |