@@ -114,7 +114,7 @@ |
||
114 | 114 | preg_match('/\\\{[a-zA-Z0-9\_\-]+\\\}/', preg_quote($operation->path), $pathVariables); |
115 | 115 | |
116 | 116 | // remove the surrounding braces |
117 | - array_walk($pathVariables, function (&$pathVariable) { |
|
117 | + array_walk($pathVariables, function(&$pathVariable) { |
|
118 | 118 | $pathVariable = stripslashes(str_replace(array('{', '}'), null, $pathVariable)); |
119 | 119 | }); |
120 | 120 |