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 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
      *
158 158
      * @param $packet_id
159 159
      * @param $packet_type
160
-     * @param $packet_body
160
+     * @param string $packet_body
161 161
      *
162 162
      * @return void
163 163
      */
Please login to merge, or discard this 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.