@@ -80,7 +80,7 @@ |
||
| 80 | 80 | * |
| 81 | 81 | * @param string|null $serializedModuleData |
| 82 | 82 | */ |
| 83 | - private function unsetModuleDataIfCanNotBeSerialized(string &$serializedModuleData = null) |
|
| 83 | + private function unsetModuleDataIfCanNotBeSerialized(string & $serializedModuleData = null) |
|
| 84 | 84 | { |
| 85 | 85 | if (!isset($serializedModuleData)) { |
| 86 | 86 | $serializedModuleData = ''; |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | * @param Query $query The query that has been searched for. |
| 297 | 297 | * @param \Apache_Solr_Response $response The search's response. |
| 298 | 298 | */ |
| 299 | - protected function processResponse($rawQuery, Query $query, \Apache_Solr_Response &$response) |
|
| 299 | + protected function processResponse($rawQuery, Query $query, \Apache_Solr_Response & $response) |
|
| 300 | 300 | { |
| 301 | 301 | if ($this->shouldHideResultsFromInitialSearch($rawQuery)) { |
| 302 | 302 | // explicitly set number of results to 0 as we just wanted |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | * |
| 325 | 325 | * @param \Apache_Solr_Response $response |
| 326 | 326 | */ |
| 327 | - protected function addExpandedDocumentsFromVariants(\Apache_Solr_Response &$response) |
|
| 327 | + protected function addExpandedDocumentsFromVariants(\Apache_Solr_Response & $response) |
|
| 328 | 328 | { |
| 329 | 329 | if (!is_array($response->response->docs)) { |
| 330 | 330 | return; |
@@ -376,7 +376,7 @@ discard block |
||
| 376 | 376 | * @param \Apache_Solr_Response $response |
| 377 | 377 | * @throws \Apache_Solr_ParserException |
| 378 | 378 | */ |
| 379 | - protected function wrapResultDocumentInResultObject(\Apache_Solr_Response &$response) |
|
| 379 | + protected function wrapResultDocumentInResultObject(\Apache_Solr_Response & $response) |
|
| 380 | 380 | { |
| 381 | 381 | $documents = $response->response->docs; |
| 382 | 382 | |