Completed
Push — master ( 23c7ff...3d51cb )
by
unknown
10s
created
src/eXpansion/Framework/Core/Plugins/Analytics.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -110,15 +110,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.