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