Failed Conditions
Pull Request — master (#1490)
by Timo
44:29 queued 10:22
created
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.
Classes/IndexQueue/PageIndexerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
         $this->requestId = uniqid();
115 115
         $this->timeout = (float)ini_get('default_socket_timeout');
116 116
 
117
-        $this->logger = is_null($solrLogManager) ?  GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
117
+        $this->logger = is_null($solrLogManager) ? GeneralUtility::makeInstance(SolrLogManager::class, __CLASS__) : $solrLogManager;
118 118
         $this->extensionConfiguration = is_null($extensionConfiguration) ? GeneralUtility::makeInstance(ExtensionConfiguration::class) : $extensionConfiguration;
119 119
 
120 120
         if (is_null($jsonEncodedParameters)) {
Please login to merge, or discard this patch.
Classes/System/Logging/SolrLogManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      */
75 75
     protected function getLogger()
76 76
     {
77
-        if($this->logger === null) {
77
+        if ($this->logger === null) {
78 78
             $this->logger = GeneralUtility::makeInstance(LogManager::class)->getLogger($this->className);
79 79
         }
80 80
 
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.