Completed
Push — master ( 6be563...93587f )
by Gareth
03:22
created
src/API/ExchangeWebServices.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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) ||
Please login to merge, or discard this patch.