|
@@ 245-247 (lines=3) @@
|
| 242 |
|
if (!empty($matches['unescapedValue'][$key])) { |
| 243 |
|
$chunk[$paramName] = floatval($matches['unescapedValue'][$key]); |
| 244 |
|
} |
| 245 |
|
if (!empty($matches['escapedDefault'][$key])) { |
| 246 |
|
$chunk[$paramName . '-default'] = strval($matches['escapedDefault'][$key]); |
| 247 |
|
} |
| 248 |
|
if (!empty($matches['unescapedDefault'][$key])) { |
| 249 |
|
$chunk[$paramName . '-default'] = floatval($matches['unescapedDefault'][$key]); |
| 250 |
|
} |
|
@@ 248-250 (lines=3) @@
|
| 245 |
|
if (!empty($matches['escapedDefault'][$key])) { |
| 246 |
|
$chunk[$paramName . '-default'] = strval($matches['escapedDefault'][$key]); |
| 247 |
|
} |
| 248 |
|
if (!empty($matches['unescapedDefault'][$key])) { |
| 249 |
|
$chunk[$paramName . '-default'] = floatval($matches['unescapedDefault'][$key]); |
| 250 |
|
} |
| 251 |
|
} |
| 252 |
|
return $chunk; |
| 253 |
|
} |