Completed
Push — master ( e6c2d6...3e7289 )
by Gareth
03:04
created
src/API.php 1 patch
Doc Comments   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      *
209 209
      * @param $items
210 210
      * @param array $options
211
-     * @return API\CreateItemResponseType
211
+     * @return Type
212 212
      */
213 213
     public function createItems($items, $options = array())
214 214
     {
@@ -243,6 +243,10 @@  discard block
 block discarded – undo
243 243
         return $this->getClient()->UpdateItem($request)->getItems();
244 244
     }
245 245
 
246
+    /**
247
+     * @param string $itemType
248
+     * @param string $uriType
249
+     */
246 250
     protected function buildUpdateItemChanges($itemType, $uriType, $changes)
247 251
     {
248 252
         $setItemFields = array();
@@ -334,7 +338,7 @@  discard block
 block discarded – undo
334 338
 
335 339
     /**
336 340
      * @param $identifier
337
-     * @return Type\BaseFolderType
341
+     * @return Type
338 342
      */
339 343
     public function getFolder($identifier)
340 344
     {
@@ -354,7 +358,7 @@  discard block
 block discarded – undo
354 358
      * Get a folder by it's distinguishedId
355 359
      *
356 360
      * @param string $distinguishedId
357
-     * @return Type\BaseFolderType
361
+     * @return Type
358 362
      */
359 363
     public function getFolderByDistinguishedId($distinguishedId)
360 364
     {
@@ -368,7 +372,7 @@  discard block
 block discarded – undo
368 372
 
369 373
     /**
370 374
      * @param $folderId
371
-     * @return Type\BaseFolderType
375
+     * @return Type
372 376
      */
373 377
     public function getFolderByFolderId($folderId)
374 378
     {
@@ -408,7 +412,7 @@  discard block
 block discarded – undo
408 412
     }
409 413
 
410 414
     /**
411
-     * @param $folderName
415
+     * @param string $folderName
412 416
      * @param string|Type\FolderIdType $parentFolderId
413 417
      * @param array $options
414 418
      * @return bool|Type\BaseFolderType
@@ -453,7 +457,7 @@  discard block
 block discarded – undo
453 457
      * @param Type\FolderIdType $folderId
454 458
      * @param null $syncState
455 459
      * @param array $options
456
-     * @return SyncFolderItemsResponseMessageType
460
+     * @return Type
457 461
      */
458 462
     public function listItemChanges($folderId, $syncState = null, $options = array())
459 463
     {
Please login to merge, or discard this patch.
src/Calendar/CalendarAPI.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -100,10 +100,10 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * Get a list of calendar items between two dates/times
102 102
      *
103
-     * @param string|DateTime $start
104
-     * @param string|DateTime $end
103
+     * @param string $start
104
+     * @param string $end
105 105
      * @param array $options
106
-     * @return CalendarItemType[]|Type\FindItemParentType
106
+     * @return Type
107 107
      */
108 108
     public function getCalendarItems($start = '12:00 AM', $end = '11:59 PM', $options = array())
109 109
     {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * @param $id
144 144
      * @param $changeKey
145
-     * @return Type\CalendarItemType
145
+     * @return Type
146 146
      */
147 147
     public function getCalendarItem($id, $changeKey)
148 148
     {
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
      *
211 211
      * @param null $syncState
212 212
      * @param array $options
213
-     * @return API\Message\SyncFolderItemsResponseMessageType
213
+     * @return Type
214 214
      */
215 215
     public function listChanges($syncState = null, $options = array())
216 216
     {
Please login to merge, or discard this patch.
src/API/NTLMSoapClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      */
94 94
     public function __call($name, $args)
95 95
     {
96
-        $this->__default_headers = array (
96
+        $this->__default_headers = array(
97 97
             $this->ewsHeaders['version'],
98 98
             $this->ewsHeaders['impersonation']
99 99
         );
Please login to merge, or discard this patch.