Completed
Pull Request — master (#1309)
by
unknown
32:09
created
Classes/System/Mvc/Backend/Service/ModuleDataStorageService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
Classes/Domain/Search/ResultSet/SearchResultSetService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.