Passed
Pull Request — master (#1086)
by
unknown
12:11 queued 01:22
created
Classes/IndexQueue/Initializer/AbstractInitializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -365,6 +365,9 @@
 block discarded – undo
365 365
         */
366 366
     }
367 367
 
368
+    /**
369
+     * @param string $initializationQuery
370
+     */
368 371
     protected function logInitialization($initializationQuery)
369 372
     {
370 373
         $solrConfiguration = $this->site->getSolrConfiguration();
Please login to merge, or discard this patch.
Classes/Query.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1041,7 +1041,7 @@  discard block
 block discarded – undo
1041 1041
     /**
1042 1042
      * Sets the fields to return by a query.
1043 1043
      *
1044
-     * @param array|string $fieldList an array or comma-separated list of field names
1044
+     * @param string $fieldList an array or comma-separated list of field names
1045 1045
      * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays
1046 1046
      */
1047 1047
     public function setFieldList($fieldList = ['*', 'score'])
@@ -1117,7 +1117,7 @@  discard block
 block discarded – undo
1117 1117
      *
1118 1118
      * This query supports the complete Lucene Query Language.
1119 1119
      *
1120
-     * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
1120
+     * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
1121 1121
      * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt
1122 1122
      */
1123 1123
     public function setAlternativeQuery($alternativeQuery)
Please login to merge, or discard this patch.