Passed
Pull Request — master (#1817)
by Timo
12:16
created
Classes/ViewHelpers/Backend/Document/IsBoostedFieldViewHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * This method decides if the condition is true or false
50 50
      *
51 51
      * @param array $arguments ViewHelper arguments to evaluate the condition for this ViewHelper.
52
-     * @return bool
52
+     * @return double
53 53
      */
54 54
     protected static function evaluateCondition($arguments = null)
55 55
     {
Please login to merge, or discard this patch.
Classes/System/UserFunctions/FlexFormUserFunctions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
     }
149 149
 
150 150
     /**
151
-     * @param $pid
151
+     * @param integer $pid
152 152
      * @return \ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration|array
153 153
      */
154 154
     protected function getConfigurationFromPageId($pid)
Please login to merge, or discard this patch.
Classes/System/Records/AbstractRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -90,6 +90,7 @@
 block discarded – undo
90 90
      * Note: Rollback will not work in case of different connections.
91 91
      *
92 92
      * @param string[] ...$tableNames
93
+     * @param string $tableNames
93 94
      * @return Connection
94 95
      */
95 96
     public function getConnectionForAllInTransactionInvolvedTables(string ...$tableNames) : Connection
Please login to merge, or discard this patch.
Classes/Domain/Search/SearchRequestBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
      * This methods sets the page argument to an expected positive integer value in the arguments array.
176 176
      *
177 177
      * @param array $arguments
178
-     * @return array
178
+     * @return integer
179 179
      */
180 180
     protected function adjustPageArgumentToPositiveInteger(array $arguments)
181 181
     {
Please login to merge, or discard this patch.
Classes/Controller/Backend/Search/AbstractModuleController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -277,6 +277,7 @@
 block discarded – undo
277 277
 
278 278
     /**
279 279
      * @param SolrCoreConnection[] $solrCoreConnections
280
+     * @param \ApacheSolrForTypo3\Solr\System\Mvc\Backend\ModuleData $moduleData
280 281
      */
281 282
     private function initializeFirstAvailableSolrCoreConnection(array $solrCoreConnections, $moduleData)
282 283
     {
Please login to merge, or discard this patch.
Classes/Domain/Search/ApacheSolrDocument/Repository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -133,6 +133,7 @@
 block discarded – undo
133 133
      * Initializes Search for given language
134 134
      *
135 135
      * @param int $languageId
136
+     * @param integer $pageId
136 137
      */
137 138
     protected function initializeSearch($pageId, $languageId = 0)
138 139
     {
Please login to merge, or discard this patch.
Classes/Domain/Search/Query/QueryBuilder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -224,6 +224,7 @@  discard block
 block discarded – undo
224 224
      * Returns Query for Search which finds document for given page.
225 225
      * Note: The Connection is per language as recommended in ext-solr docs.
226 226
      *
227
+     * @param integer $pageId
227 228
      * @return Query
228 229
      */
229 230
     public function buildPageQuery($pageId)
@@ -245,6 +246,9 @@  discard block
 block discarded – undo
245 246
     /**
246 247
      * Returns a query for single record
247 248
      *
249
+     * @param string $type
250
+     * @param integer $uid
251
+     * @param integer $pageId
248 252
      * @return Query
249 253
      */
250 254
     public function buildRecordQuery($type, $uid, $pageId): Query
Please login to merge, or discard this patch.
Classes/Domain/Search/ResultSet/SearchResultSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@
 block discarded – undo
247 247
     }
248 248
 
249 249
     /**
250
-     * @param \ApacheSolrForTypo3\Solr\Domain\Search\Query\Query $usedQuery
250
+     * @param \Solarium\QueryType\Select\Query\Query $usedQuery
251 251
      */
252 252
     public function setUsedQuery($usedQuery)
253 253
     {
Please login to merge, or discard this patch.