Completed
Pull Request — master (#1746)
by Timo
13:48
created
Classes/SolrService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function getAdminService()
154 154
     {
155
-        if($this->adminService === null) {
155
+        if ($this->adminService === null) {
156 156
             $this->adminService = GeneralUtility::makeInstance(SolrAdminService::class, $this->host, $this->port, $this->path, $this->scheme, $this->configuration, $this->logger, $this->synonymParser, $this->stopWordParser, $this->schemaParser);
157 157
         }
158 158
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      */
165 165
     public function getReadService()
166 166
     {
167
-        if($this->readService === null) {
167
+        if ($this->readService === null) {
168 168
             $this->readService = GeneralUtility::makeInstance(SolrReadService::class, $this->host, $this->port, $this->path, $this->scheme, $this->configuration, $this->logger);
169 169
         }
170 170
 
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function getWriteService()
178 178
     {
179
-        if($this->writeService === null) {
179
+        if ($this->writeService === null) {
180 180
             $this->writeService = GeneralUtility::makeInstance(SolrWriteService::class, $this->host, $this->port, $this->path, $this->scheme, $this->configuration, $this->logger);
181 181
         }
182 182
 
Please login to merge, or discard this patch.