Completed
Pull Request — develop (#25)
by
unknown
03:54 queued 01:46
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/phpDemo.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 use GroupByInc\API\Model\Results;
10 10
 use Doctrine\Common\Annotations\AnnotationRegistry;
11 11
 use GroupByInc\API\Model\Sort;
12
-use GroupByInc\API\Request\SelectedRefinement;
13
-use GroupByInc\API\Request\SelectedRefinementValue;
14 12
 
15 13
 
16 14
 require __DIR__ . "/../../vendor/autoload.php";
Please login to merge, or discard this patch.