Completed
Push — master ( 7424e8...05e0e0 )
by Timo
23:23 queued 11s
created
Classes/Query.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      *
194 194
      * @param string $msg
195 195
      * @param int $severity
196
-     * @param mixed $dataVar
196
+     * @param string[] $dataVar
197 197
      */
198 198
     protected function writeDevLog($msg, $severity = 0, $dataVar = false)
199 199
     {
@@ -1004,7 +1004,7 @@  discard block
 block discarded – undo
1004 1004
     /**
1005 1005
      * Sets the fields to return by a query.
1006 1006
      *
1007
-     * @param array|string $fieldList an array or comma-separated list of field names
1007
+     * @param string $fieldList an array or comma-separated list of field names
1008 1008
      * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays
1009 1009
      */
1010 1010
     public function setFieldList($fieldList = array('*', 'score'))
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
      *
1081 1081
      * This query supports the complete Lucene Query Language.
1082 1082
      *
1083
-     * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
1083
+     * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter.
1084 1084
      * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt
1085 1085
      */
1086 1086
     public function setAlternativeQuery($alternativeQuery)
Please login to merge, or discard this patch.