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 ( 79fa03...84e1e5 )
by Chris
01:58
created
src/Rcon.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 	 */
40 40
 	public function __construct($host, $port, $password, $timeout) 
41 41
 	{
42
-	    $this->host = $host;
42
+		$this->host = $host;
43 43
 		$this->port = $port;
44 44
 		$this->password = $password;
45 45
 		$this->timeout = $timeout;
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,8 +73,9 @@  discard block
 block discarded – undo
73 73
 		stream_set_timeout($this->socket, 3, 0);
74 74
 
75 75
 		// check authorization
76
-		if ($this->authorize())
77
-			return true;
76
+		if ($this->authorize()) {
77
+					return true;
78
+		}
78 79
 
79 80
 		return false;
80 81
 	}
@@ -86,8 +87,9 @@  discard block
 block discarded – undo
86 87
 	 */
87 88
 	public function disconnect() 
88 89
 	{
89
-		if ($this->socket)
90
-			fclose($this->socket);
90
+		if ($this->socket) {
91
+					fclose($this->socket);
92
+		}
91 93
 	}
92 94
 
93 95
 	/**
@@ -109,8 +111,9 @@  discard block
 block discarded – undo
109 111
 	 */
110 112
 	public function sendCommand($command) 
111 113
 	{
112
-		if (!$this->isConnected())
113
-			return false;
114
+		if (!$this->isConnected()) {
115
+					return false;
116
+		}
114 117
 
115 118
 		// send command packet
116 119
 		$this->writePacket(Rcon::PACKET_COMMAND, Rcon::SERVERDATA_EXECCOMMAND, $command);
Please login to merge, or discard this patch.