Passed
Pull Request — master (#1083)
by
unknown
51:23
created
Classes/ContentObject/Relation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -353,7 +353,7 @@
 block discarded – undo
353 353
             $value = array_pop($relatedItemsFromForeignTable);
354 354
 
355 355
             // restore
356
-            $this->configuration= $backupConfiguration;
356
+            $this->configuration = $backupConfiguration;
357 357
             $parentContentObject->data = $backupRecord;
358 358
         }
359 359
 
Please login to merge, or discard this patch.
Classes/Facet/LinkBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
 
249 249
             // find the currently used option for this facet
250 250
             foreach ($filterParameters as $key => $filter) {
251
-                list($filterName, ) = explode(':', $filter);
251
+                list($filterName,) = explode(':', $filter);
252 252
 
253 253
                 if ($filterName == $this->facetName) {
254 254
                     $indexToReplace = $key;
Please login to merge, or discard this patch.
Classes/Controller/Backend/Web/Info/ApacheSolrDocumentController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,8 @@
 block discarded – undo
26 26
 
27 27
 
28 28
 use ApacheSolrForTypo3\Solr\Domain\Repository\ApacheSolrDocumentRepository;
29
-use TYPO3\CMS\Backend\View\BackendTemplateView;
30 29
 use TYPO3\CMS\Core\Utility\GeneralUtility;
31 30
 use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
32
-use TYPO3\CMS\Extbase\Utility\DebuggerUtility;
33 31
 
34 32
 /**
35 33
  * Administration module controller
Please login to merge, or discard this patch.
Classes/Domain/Repository/ApacheSolrDocumentRepository.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -78,6 +78,7 @@  discard block
 block discarded – undo
78 78
      * Initializes Search for given language
79 79
      *
80 80
      * @param int $languageId
81
+     * @param integer $pageId
81 82
      */
82 83
     protected function initializeSearch($pageId, $languageId = 0)
83 84
     {
@@ -98,6 +99,7 @@  discard block
 block discarded – undo
98 99
      * Returns Query for Saearch which finds document for given page.
99 100
      * Note: The Connection is per language as recommended in ext-solr docs.
100 101
      *
102
+     * @param integer $pageId
101 103
      * @return Query
102 104
      */
103 105
     protected function getQueryForPage($pageId)
Please login to merge, or discard this patch.