Completed
Pull Request — develop (#25)
by
unknown
05:29 queued 03:40
created
src/API/Model/ResultsMetadata.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
   /**
26 26
    * @param recordLimitReached    Whether the total record count is actually greater than the returned record count
27
-   * @return                      This ResultsMetadata object
27
+   * @return                      ResultsMetadata ResultsMetadata object
28 28
    */
29 29
   public function setRecordLimitReached($recordLimitReached)
30 30
   {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
   /**
44 44
    * @param totalTime    The total time spent in milliseconds to generate results
45
-   * @return             This ResultsMetadata object
45
+   * @return             ResultsMetadata ResultsMetadata object
46 46
    */
47 47
   public function setTotalTime($totalTime)
48 48
   {
Please login to merge, or discard this patch.
src/API/Query.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -430,6 +430,9 @@
 block discarded – undo
430 430
     array_push($this->customUrlParams, $param);
431 431
   }
432 432
 
433
+  /**
434
+   * @param string|null $refinementString
435
+   */
433 436
   public function splitRefinements($refinementString)
434 437
   {
435 438
     if (StringUtils::isNotBlank($refinementString)) {
Please login to merge, or discard this patch.
src/API/Model/NumericBoost.php 1 patch
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
   }
29 29
 
30 30
   /**
31
-   * @param name    The string to be the name of this Numeric Boost
32
-   * @return        This Numeric Boost
31
+   * @param name    string string to be the name of this Numeric Boost
32
+   * @return        NumericBoost Numeric Boost
33 33
    */
34 34
   public function setName($name)
35 35
   {
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
   }
47 47
 
48 48
   /**
49
-   * @param inverted    True if this is to be an iverted Numeric Boost, false otherwise
50
-   * @return            This Numeric Boost
49
+   * @param inverted    boolean if this is to be an iverted Numeric Boost, false otherwise
50
+   * @return            NumericBoost Numeric Boost
51 51
    */
52 52
   public function setInverted($inverted)
53 53
   {
@@ -65,7 +65,8 @@  discard block
 block discarded – undo
65 65
 
66 66
   /**
67 67
    * @param double  The value to be the strength of this Numeric Boost
68
-   * @return        This Numeric Boost
68
+   * @param double $strength
69
+   * @return        NumericBoost Numeric Boost
69 70
    */
70 71
   public function setStrength($strength)
71 72
   {
Please login to merge, or discard this patch.