Completed
Pull Request — 1.0 (#20)
by
unknown
02:56
created
src/ZohoClient.php 1 patch
Doc Comments   +14 added lines, -13 removed lines patch added patch discarded remove patch
@@ -85,6 +85,7 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Implements getFields API method.
87 87
      *
88
+     * @param string $module
88 89
      * @return Response The Response object
89 90
      */
90 91
     public function getFields($module)
@@ -144,7 +145,7 @@  discard block
 block discarded – undo
144 145
      * @param $sortOrderString
145 146
      * @param \DateTime $lastModifiedTime
146 147
      * @param $selectColumns
147
-     * @param $fromIndex
148
+     * @param integer $fromIndex
148 149
      * @param $toIndex
149 150
      *
150 151
      * @return Response The Response object
@@ -210,10 +211,10 @@  discard block
 block discarded – undo
210 211
      * Implements getRecords API method.
211 212
      *
212 213
      * @param $module
213
-     * @param $id
214
-     * @param $parentModule
215
-     * @param null $fromIndex
216
-     * @param null $toIndex
214
+     * @param string $id
215
+     * @param string $parentModule
216
+     * @param integer $fromIndex
217
+     * @param integer $toIndex
217 218
      *
218 219
      * @return Response
219 220
      *
@@ -242,7 +243,7 @@  discard block
 block discarded – undo
242 243
      * @param int       $fromIndex
243 244
      * @param int       $toIndex
244 245
      * @param \DateTime $lastModifiedTime
245
-     * @param null      $selectColumns
246
+     * @param string|null      $selectColumns
246 247
      *
247 248
      * @return Response
248 249
      *
@@ -309,6 +310,7 @@  discard block
 block discarded – undo
309 310
      * @param bool $wfTrigger
310 311
      * @param int  $duplicateCheck
311 312
      * @param bool $isApproval
313
+     * @param \SimpleXMLElement $xmlData
312 314
      *
313 315
      * @return Response
314 316
      *
@@ -361,9 +363,10 @@  discard block
 block discarded – undo
361 363
      * Implements uploadFile API method.
362 364
      *
363 365
      * @param $module
364
-     * @param $id
366
+     * @param string $id
365 367
      * @param $content
366 368
      * @param resource|string $content
369
+     * @param string $filename
367 370
      *
368 371
      * @return Response
369 372
      *
@@ -384,8 +387,8 @@  discard block
 block discarded – undo
384 387
 
385 388
     /**
386 389
      * @param $module
387
-     * @param $id
388
-     * @param $attachmentUrl
390
+     * @param string $id
391
+     * @param string $attachmentUrl
389 392
      *
390 393
      * @return Response
391 394
      *
@@ -402,7 +405,7 @@  discard block
 block discarded – undo
402 405
      * Implements downloadFile API method.
403 406
      *
404 407
      * @param $module
405
-     * @param $id
408
+     * @param string $id
406 409
      *
407 410
      * @return Response
408 411
      *
@@ -428,9 +431,7 @@  discard block
 block discarded – undo
428 431
      *
429 432
      * @param string                   $module  The module to use
430 433
      * @param string                   $command Command to call
431
-     * @param array                    $params  Options
432
-     * @param \SimpleXMLElement|string $data    Data to send [optional]
433
-     * @param array                    $options Options to add for configurations [optional]
434
+     * @param array                    $postParams  Options
434 435
      *
435 436
      * @return Response
436 437
      */
Please login to merge, or discard this patch.