@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | |
| 216 | 216 | protected function createClient($server, $auth, $options) |
| 217 | 217 | { |
| 218 | - $location = 'https://' . $this->cleanServerUrl($server) . '/EWS/Exchange.asmx'; |
|
| 218 | + $location = 'https://'.$this->cleanServerUrl($server).'/EWS/Exchange.asmx'; |
|
| 219 | 219 | |
| 220 | 220 | $options = array_replace_recursive([ |
| 221 | 221 | 'version' => self::VERSION_2007, |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $this->soap = new NTLMSoapClient( |
| 229 | 229 | $location, |
| 230 | 230 | $auth, |
| 231 | - dirname(__FILE__) . '/../../Resources/wsdl/services.wsdl', |
|
| 231 | + dirname(__FILE__).'/../../Resources/wsdl/services.wsdl', |
|
| 232 | 232 | $options |
| 233 | 233 | ); |
| 234 | 234 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | |
| 298 | 298 | $server = $url['host']; |
| 299 | 299 | if (isset($url['port'])) { |
| 300 | - $server .= ':' . $url['port']; |
|
| 300 | + $server .= ':'.$url['port']; |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | if (isset($url['path'])) { |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | if ($code != 200) { |
| 333 | - throw new ExchangeException('SOAP client returned status of ' . $code, $code); |
|
| 333 | + throw new ExchangeException('SOAP client returned status of '.$code, $code); |
|
| 334 | 334 | } |
| 335 | 335 | |
| 336 | 336 | if (empty($response) || |