Passed
Pull Request — master (#1552)
by Timo
04:27
created
Classes/Domain/Search/ResultSet/SearchResultSetService.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -30,10 +30,8 @@
 block discarded – undo
30 30
 use ApacheSolrForTypo3\Solr\Domain\Search\SearchRequestAware;
31 31
 use ApacheSolrForTypo3\Solr\Query;
32 32
 use ApacheSolrForTypo3\Solr\Query\Modifier\Modifier;
33
-use ApacheSolrForTypo3\Solr\Response\Processor\ResponseProcessor;
34 33
 use ApacheSolrForTypo3\Solr\Search;
35 34
 use ApacheSolrForTypo3\Solr\Search\QueryAware;
36
-use ApacheSolrForTypo3\Solr\Search\ResponseModifier;
37 35
 use ApacheSolrForTypo3\Solr\Search\SearchAware;
38 36
 use ApacheSolrForTypo3\Solr\Search\SearchComponentManager;
39 37
 use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
Please login to merge, or discard this patch.
Classes/Query.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -690,7 +690,7 @@
 block discarded – undo
690 690
      *
691 691
      * This query supports the complete Lucene Query Language.
692 692
      *
693
-     * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
693
+     * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
694 694
      * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt
695 695
      */
696 696
     public function setAlternativeQuery($alternativeQuery)
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
      */
479 479
     public function setGrouping(Grouping $grouping)
480 480
     {
481
-       $this->grouping = $grouping;
481
+        $this->grouping = $grouping;
482 482
     }
483 483
 
484 484
     /**
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
      */
852 852
     public function setHighlighting(Highlighting $highlighting)
853 853
     {
854
-       $this->highlighting = $highlighting;
854
+        $this->highlighting = $highlighting;
855 855
     }
856 856
 
857 857
     /**
Please login to merge, or discard this patch.