Failed Conditions
Pull Request — master (#1490)
by Timo
09:03
created
Classes/ConnectionManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * @param SystemLanguageRepository $systemLanguageRepository
73 73
      * @param PagesRepositoryAtExtSolr|null $pagesRepositoryAtExtSolr
74
-     * @param SolrLogManager $logManager
74
+     * @param SolrLogManager $solrLogManager
75 75
      */
76 76
     public function __construct(SystemLanguageRepository $systemLanguageRepository = null, PagesRepositoryAtExtSolr $pagesRepositoryAtExtSolr = null, SolrLogManager $solrLogManager = null)
77 77
     {
Please login to merge, or discard this patch.
Classes/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
     {
201 201
         $keywords = (string)$keywords;
202 202
 
203
-        $this->logger =  is_null($solrLogManager) ?  GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
203
+        $this->logger = is_null($solrLogManager) ? GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
204 204
         $this->solrConfiguration = is_null($solrConfiguration) ? Util::getSolrConfiguration() : $solrConfiguration;
205 205
         $this->siteHashService = is_null($siteHashService) ? GeneralUtility::makeInstance(SiteHashService::class) : $siteHashService;
206 206
         $this->escapeService = is_null($escapeService) ? GeneralUtility::makeInstance(EscapeService::class) : $escapeService;
Please login to merge, or discard this patch.
Classes/IndexQueue/PageIndexerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         }
129 129
         unset($this->parameters['actions']);
130 130
 
131
-        $this->logger =  is_null($solrLogManager) ?  GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
131
+        $this->logger = is_null($solrLogManager) ? GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
132 132
         $this->extensionConfiguration = is_null($extensionConfiguration) ? GeneralUtility::makeInstance(ExtensionConfiguration::class) : $extensionConfiguration;
133 133
     }
134 134
 
Please login to merge, or discard this patch.
Classes/Domain/Search/ResultSet/SearchResultSetService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     {
105 105
         $this->search = $search;
106 106
         $this->typoScriptConfiguration = $configuration;
107
-        $this->logger =  is_null($solrLogManager) ?  GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
107
+        $this->logger = is_null($solrLogManager) ? GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
108 108
     }
109 109
 
110 110
     /**
Please login to merge, or discard this patch.
Classes/Domain/Index/IndexService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         $this->site = $site;
87 87
         $this->indexQueue = is_null($queue) ? GeneralUtility::makeInstance(Queue::class) : $queue;
88 88
         $this->signalSlotDispatcher = is_null($dispatcher) ? GeneralUtility::makeInstance(Dispatcher::class) : $dispatcher;
89
-        $this->logger =  is_null($solrLogManager) ?  GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
89
+        $this->logger = is_null($solrLogManager) ? GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
90 90
     }
91 91
 
92 92
     /**
Please login to merge, or discard this patch.