Completed
Pull Request — master (#789)
by
unknown
24:13
created
Classes/SolrService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
      */
277 277
     protected function performPingRequest($timeout = 2, $useCache = true)
278 278
     {
279
-        $cacheKey = (string) ($this);
279
+        $cacheKey = (string)($this);
280 280
         if ($useCache && isset(static::$pingCache[$cacheKey])) {
281 281
             return static::$pingCache[$cacheKey];
282 282
         }
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
             $solrconfigXmlUrl = $this->_scheme . '://'
611 611
                 . $this->_host . ':' . $this->_port
612 612
                 . $this->_path . 'admin/file/?file=solrconfig.xml';
613
-            $response= $this->_sendRawGet($solrconfigXmlUrl);
613
+            $response = $this->_sendRawGet($solrconfigXmlUrl);
614 614
 
615 615
             $solrconfigXml = simplexml_load_string($response->getRawResponse());
616 616
             if ($solrconfigXml === false) {
Please login to merge, or discard this patch.