Completed
Push — master ( 936b83...a18349 )
by Gareth
03:34
created
src/API/ExchangeWebServices.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     protected $primarySmtpMailbox = null;
132 132
 
133
-    protected static $middlewareStack = [ ];
133
+    protected static $middlewareStack = [];
134 134
 
135 135
     /**
136 136
      * A setting to check whether or not responses should be drilled down before being
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
         }
455 455
 
456 456
         if ($code >= 300) {
457
-            throw new ExchangeException('SOAP client returned status of ' . $code, $code);
457
+            throw new ExchangeException('SOAP client returned status of '.$code, $code);
458 458
         }
459 459
 
460 460
         if (empty($response) || empty($response->getNonNullResponseMessages())) {
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
     {
467 467
         if (self::$middlewareStack === false) {
468 468
             self::$middlewareStack = [
469
-                'TypeObjectToXMLObject' => function ($name, $request, $options) {
469
+                'TypeObjectToXMLObject' => function($name, $request, $options) {
470 470
                     if ($request instanceof Type) {
471 471
                         $request = $request->toXmlObject();
472 472
                     }
Please login to merge, or discard this patch.