@@ -123,7 +123,7 @@ |
||
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 | ); |
@@ -300,7 +300,7 @@ discard block |
||
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 |
||
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 |
||
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 | /** |