@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | 'Version' => $tmp[1] |
74 | 74 | ]; |
75 | 75 | } |
76 | - $modulesToDisregard = [ |
|
76 | + $modulesToDisregard = [ |
|
77 | 77 | $srvSoftwareArray[0], |
78 | 78 | '(Win64)', |
79 | 79 | ]; |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | { |
167 | 167 | $sReturn = []; |
168 | 168 | $sReturn['Tomcat'] = '---'; |
169 | - $url = 'http://' . $this->informatorInternalArray['superGlobals']->getHttpHost() |
|
169 | + $url = 'http://'.$this->informatorInternalArray['superGlobals']->getHttpHost() |
|
170 | 170 | . ':8080/informator.Tomcat/index.jsp'; |
171 | 171 | $urlFeedback = $this->getContentFromUrlThroughCurlAsArrayIfJson($url); |
172 | 172 | if (is_array($urlFeedback) && isset($urlFeedback['response'])) { |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | private function setInterface() |
179 | 179 | { |
180 | - $outputArray = [ |
|
180 | + $outputArray = [ |
|
181 | 181 | 'showLabels' => true, |
182 | 182 | 'feedback' => '<span style="background-color:red;color:white;">Label not set...</span>', |
183 | 183 | 'arrayToReturn' => [], |
@@ -236,16 +236,16 @@ discard block |
||
236 | 236 | 'lang' => 'en-US', |
237 | 237 | 'title' => 'Informator' |
238 | 238 | ]); |
239 | - $sReturn[] = $inArray['feedback'] . '<p style="background-color:green;color:white;">' |
|
239 | + $sReturn[] = $inArray['feedback'].'<p style="background-color:green;color:white;">' |
|
240 | 240 | . 'So you might want to choose one from the list below:</p>' |
241 | 241 | . '<ul>'; |
242 | 242 | $arToReturn = array_keys($this->informatorInternalArray['knownLabels']); |
243 | 243 | foreach ($arToReturn as $value) { |
244 | 244 | $sReturn[] = '<li>' |
245 | - . '<a href="?Label=' . urlencode(((string) $value)) . '" target="_blank">' . $value . '</a>' |
|
245 | + . '<a href="?Label='.urlencode(((string) $value)).'" target="_blank">'.$value.'</a>' |
|
246 | 246 | . '</li>'; |
247 | 247 | } |
248 | - $sReturn[] = '</ul>' . $this->setFooterCommon(); |
|
248 | + $sReturn[] = '</ul>'.$this->setFooterCommon(); |
|
249 | 249 | return implode('', $sReturn); |
250 | 250 | } |
251 | 251 |