Completed
Push — master ( 9e9528...25f4f6 )
by Gareth
04:01
created
src/API/ExchangeWebServices.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,7 @@
 block discarded – undo
435 435
 
436 436
     /**
437 437
      * @param Message\BaseResponseMessageType $response
438
-     * @param $code
438
+     * @param integer $code
439 439
      * @throws ExchangeException
440 440
      * @throws NoResponseReturnedException
441 441
      * @throws ServiceUnavailableException
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -452,7 +452,7 @@
 block discarded – undo
452 452
         }
453 453
 
454 454
         if ($code >= 300) {
455
-            throw new ExchangeException('SOAP client returned status of ' . $code, $code);
455
+            throw new ExchangeException('SOAP client returned status of '.$code, $code);
456 456
         }
457 457
 
458 458
         if (empty($response) || empty($response->getNonNullResponseMessages())) {
Please login to merge, or discard this patch.
src/API/Type.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
         }
126 126
 
127 127
         if (is_array($property)) {
128
-            $property = array_map(function ($property) {
128
+            $property = array_map(function($property) {
129 129
                 if ($property instanceof Type) {
130 130
                     return $property->toXmlObject();
131 131
                 }
Please login to merge, or discard this patch.
src/HttpPlayback/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
 
123 123
     public function getRecordFilePath()
124 124
     {
125
-        $path = $this->getRecordLocation() . $this->recordFileName;
125
+        $path = $this->getRecordLocation().$this->recordFileName;
126 126
         $path = str_replace("\\", "/", $path);
127 127
 
128 128
         return $path;
Please login to merge, or discard this patch.
src/API/ExchangeAutodiscover.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -323,7 +323,7 @@
 block discarded – undo
323 323
      * Parse the Autoresponse Payload, particularly to determine if an
324 324
      * additional request is necessary.
325 325
      *
326
-     * @param $response
326
+     * @param string $response
327 327
      * @return array|bool
328 328
      * @throws AutodiscoverFailed
329 329
      */
Please login to merge, or discard this patch.