GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 84e1e5...8394ba )
by Chris
02:01
created
src/Rcon.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -173,14 +173,14 @@
 block discarded – undo
173 173
 
174 174
         //create packet
175 175
         $packet = pack("VV", $packet_id, $packet_type);
176
-        $packet = $packet . $packet_body . "\x00";
177
-        $packet = $packet . "\x00";
176
+        $packet = $packet.$packet_body."\x00";
177
+        $packet = $packet."\x00";
178 178
 
179 179
         // get packet size.
180 180
         $packet_size = strlen($packet);
181 181
 
182 182
         // attach size to packet.
183
-        $packet = pack("V", $packet_size) . $packet;
183
+        $packet = pack("V", $packet_size).$packet;
184 184
 
185 185
         // write packet.
186 186
         fwrite($this->socket, $packet, strlen($packet));
Please login to merge, or discard this patch.