Completed
Pull Request — develop (#25)
by
unknown
04:11 queued 02:20
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 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -17,13 +17,11 @@
 block discarded – undo
17 17
 use GroupByInc\API\Request\Bias;
18 18
 use GroupByInc\API\Request\Biasing;
19 19
 use GroupByInc\API\Request\MatchStrategy as RMatchStrategy;
20
-use GroupByInc\API\Request\MatchStrategy;
21 20
 use GroupByInc\API\Request\NumericBoost as RNumericBoost;
22 21
 use GroupByInc\API\Request\PartialMatchRule as RPartialMatchRule;
23 22
 use GroupByInc\API\Request\RefinementsRequest;
24 23
 use GroupByInc\API\Request\Request;
25 24
 use GroupByInc\API\Request\RestrictNavigation;
26
-use GroupByInc\API\Request\SelectedRefinement;
27 25
 use GroupByInc\API\Request\SelectedRefinementRange;
28 26
 use GroupByInc\API\Request\SelectedRefinementValue;
29 27
 use GroupByInc\API\Request\Sort as RSort;
Please login to merge, or discard this patch.