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 ( be4be5...c74b2a )
by Greg
02:42
created
src/SecureShell.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     private $output;
34 34
 
35
-    public function openConnection( $host,
35
+    public function openConnection($host,
36 36
                                     $port = SecureShell::DEFAULT_PORT,
37 37
                                     $auth = SecureShell::AUTH_PASSWORD,
38 38
                                     ...$args)
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
             $file->setFlags(SplFileObject::READ_CSV);
124 124
             $file->setCsvControl(' ');
125 125
             foreach ($file as $entry) {
126
-                list(, , $fp) = $entry;
126
+                list(,, $fp) = $entry;
127 127
                 $knownHost = (strcmp($fp, $fingerprint) !== 0);
128 128
                 if ($knownHost === true) {
129 129
                     break;
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
         $sftp = ssh2_sftp($connection);
195 195
         try {
196 196
             $res = (bool) ssh2_sftp_stat($sftp, $filename);
197
-        } catch(Exception $e) {
197
+        } catch (Exception $e) {
198 198
             $res = false;
199 199
         }
200 200
         \PHPUnit_Framework_Assert::assertFalse($res);
Please login to merge, or discard this patch.