@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $parsedUrl = parse_url($url); |
| 36 | 36 | $separator = ($parsedUrl['query'] == null) ? '?' : '&'; |
| 37 | - $redirectUrl = $url. $separator . http_build_query($parameters); |
|
| 37 | + $redirectUrl = $url.$separator.http_build_query($parameters); |
|
| 38 | 38 | Tools::redirect($redirectUrl); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | $response = $exception->getMessage(); |
| 77 | 77 | } else { |
| 78 | 78 | $response = 'Unable to serialize log.'. |
| 79 | - 'data: '. json_encode($data). |
|
| 80 | - 'exception: '. json_encode($exception); |
|
| 79 | + 'data: '.json_encode($data). |
|
| 80 | + 'exception: '.json_encode($exception); |
|
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | |