Completed
Push — master ( c4ade6...7d11c4 )
by Timo
14:49
created
Classes/Backend/SolrModule/IndexMaintenanceModuleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
 
124 124
         if ($coresReloaded) {
125 125
             $this->addFlashMessage(
126
-                'Core configuration reloaded ('.implode(', ', $reloadedCores).').',
126
+                'Core configuration reloaded (' . implode(', ', $reloadedCores) . ').',
127 127
                 '',
128 128
                 FlashMessage::OK
129 129
             );
Please login to merge, or discard this patch.
Classes/SolrService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
      */
301 301
     protected function performPingRequest($timeout = 2, $useCache = true)
302 302
     {
303
-        $cacheKey = (string) ($this);
303
+        $cacheKey = (string)($this);
304 304
         if ($useCache && isset(static::$pingCache[$cacheKey])) {
305 305
             return static::$pingCache[$cacheKey];
306 306
         }
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
             $solrconfigXmlUrl = $this->_scheme . '://'
630 630
                 . $this->_host . ':' . $this->_port
631 631
                 . $this->_path . 'admin/file/?file=solrconfig.xml';
632
-            $response= $this->_sendRawGet($solrconfigXmlUrl);
632
+            $response = $this->_sendRawGet($solrconfigXmlUrl);
633 633
 
634 634
             $solrconfigXml = simplexml_load_string($response->getRawResponse());
635 635
             if ($solrconfigXml === false) {
@@ -892,7 +892,7 @@  discard block
 block discarded – undo
892 892
      */
893 893
     public function getCoreName()
894 894
     {
895
-        return (string) array_pop(explode('/', trim($this->_path, '/')));
895
+        return (string)array_pop(explode('/', trim($this->_path, '/')));
896 896
     }
897 897
 
898 898
     /**
Please login to merge, or discard this patch.