@@ -87,11 +87,11 @@ |
||
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | if (1 === count($identifiers)) { |
| 90 | - $identifiers = array_map(function ($identifierValue) { |
|
| 90 | + $identifiers = array_map(function($identifierValue) { |
|
| 91 | 91 | return rawurlencode($identifierValue); |
| 92 | 92 | }, $identifiers); |
| 93 | 93 | } else { |
| 94 | - $identifiers = array_map(function ($identifierName, $identifierValue) { |
|
| 94 | + $identifiers = array_map(function($identifierName, $identifierValue) { |
|
| 95 | 95 | return sprintf('%s=%s', $identifierName, rawurlencode($identifierValue)); |
| 96 | 96 | }, array_keys($identifiers), $identifiers); |
| 97 | 97 | } |