@@ -110,15 +110,15 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | protected function handshake() |
| 112 | 112 | { |
| 113 | - $key = &$this->key; |
|
| 114 | - $lastPing = &$this->lastPing; |
|
| 113 | + $key = &$this->key; |
|
| 114 | + $lastPing = &$this->lastPing; |
|
| 115 | 115 | $that = $this; |
| 116 | 116 | $logger = $this->logger; |
| 117 | 117 | |
| 118 | 118 | $query = http_build_query( |
| 119 | 119 | ['login' => $this->gameData->getSystemInfo()->serverLogin] |
| 120 | 120 | ); |
| 121 | - $url = $this->handshakeUrl . '?' . $query; |
|
| 121 | + $url = $this->handshakeUrl.'?'.$query; |
|
| 122 | 122 | |
| 123 | 123 | $lastPing = time(); |
| 124 | 124 | $this->logger->debug("[eXpansion analytics]Starting handshake"); |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $this->http->put( |
| 128 | 128 | $url, |
| 129 | 129 | [], |
| 130 | - function (HttpResult $result) use (&$key, &$lastPing, $logger, $that) { |
|
| 130 | + function(HttpResult $result) use (&$key, &$lastPing, $logger, $that) { |
|
| 131 | 131 | $key = null; |
| 132 | 132 | if ($result->getHttpCode() != '200') { |
| 133 | 133 | $logger->debug('[eXpansion analytics]Handshake failed', ['http_code' => $result->getHttpCode()]); |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | $query = http_build_query( |
| 168 | 168 | $data |
| 169 | 169 | ); |
| 170 | - $url = $this->pingUrl . '?' . $query; |
|
| 170 | + $url = $this->pingUrl.'?'.$query; |
|
| 171 | 171 | |
| 172 | 172 | $this->operationInProgress = true; |
| 173 | 173 | $this->lastPing = time(); |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | $this->http->put( |
| 180 | 180 | $url, |
| 181 | 181 | [], |
| 182 | - function (HttpResult $result) use (&$operationInProgress, &$key, $logger) { |
|
| 182 | + function(HttpResult $result) use (&$operationInProgress, &$key, $logger) { |
|
| 183 | 183 | if ($result->getHttpCode() == '200') { |
| 184 | 184 | $operationInProgress = false; |
| 185 | 185 | $logger->debug('[eXpansion analytics]Ping successfull'); |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | 'mysql_version' => 'unknown', |
| 212 | 212 | 'memory' => memory_get_usage(), |
| 213 | 213 | 'memory_peak' => memory_get_peak_usage(), |
| 214 | - 'title' => str_replace('@','_by_', $this->gameData->getVersion()->titleId), |
|
| 214 | + 'title' => str_replace('@', '_by_', $this->gameData->getVersion()->titleId), |
|
| 215 | 215 | 'game' => $this->gameData->getTitleGame(), |
| 216 | 216 | 'mode' => strtolower($this->gameData->getGameInfos()->scriptName), |
| 217 | 217 | 'serverOs' => $this->gameData->getServerOs(), |