Passed
Pull Request — master (#1086)
by
unknown
15:56
created
Classes/Query.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      */
172 172
     public function __construct($keywords, $solrConfiguration = null, SiteHashService $siteHashService = null)
173 173
     {
174
-        $keywords = (string) $keywords;
174
+        $keywords = (string)$keywords;
175 175
 
176 176
         $this->logger = GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__);
177 177
         $this->solrConfiguration = is_null($solrConfiguration) ? Util::getSolrConfiguration() : $solrConfiguration;
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
      */
680 680
     public function getGroupFields()
681 681
     {
682
-        return (array) $this->getQueryParameter('group.field', []);
682
+        return (array)$this->getQueryParameter('group.field', []);
683 683
     }
684 684
 
685 685
     /**
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
      */
703 703
     public function getGroupSortings()
704 704
     {
705
-        return (array) $this->getQueryParameter('group.sort', []);
705
+        return (array)$this->getQueryParameter('group.sort', []);
706 706
     }
707 707
 
708 708
     // faceting
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
      */
729 729
     public function getGroupQueries()
730 730
     {
731
-        return (array) $this->getQueryParameter('group.query', []);
731
+        return (array)$this->getQueryParameter('group.query', []);
732 732
     }
733 733
 
734 734
     /**
Please login to merge, or discard this patch.