@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | 'endpointurl' => $this->getEndpointUrl(), |
85 | 85 | ]); |
86 | 86 | |
87 | - $this->logger->debug('Request: ' . $this->getRequest(), [ |
|
87 | + $this->logger->debug('Request: '.$this->getRequest(), [ |
|
88 | 88 | 'id' => $id, |
89 | 89 | 'endpointurl' => $this->getEndpointUrl(), |
90 | 90 | ]); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $response = $client->post( |
96 | 96 | $this->getEndpointUrl(), |
97 | 97 | [ |
98 | - 'body' => $this->getAccess() . $this->getRequest(), |
|
98 | + 'body' => $this->getAccess().$this->getRequest(), |
|
99 | 99 | 'headers' => [ |
100 | 100 | 'Content-type' => 'application/x-www-form-urlencoded; charset=utf-8', |
101 | 101 | 'Accept-Charset' => 'UTF-8', |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | 'endpointurl' => $this->getEndpointUrl(), |
112 | 112 | ]); |
113 | 113 | |
114 | - $this->logger->debug('Response: ' . $body, [ |
|
114 | + $this->logger->debug('Response: '.$body, [ |
|
115 | 115 | 'id' => $id, |
116 | 116 | 'endpointurl' => $this->getEndpointUrl(), |
117 | 117 | ]); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | 'endpointurl' => $this->getEndpointUrl(), |
141 | 141 | ]); |
142 | 142 | |
143 | - throw new RequestException('Failure: ' . $e->getMessage()); |
|
143 | + throw new RequestException('Failure: '.$e->getMessage()); |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 |