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 ( c74b2a...ebd1af )
by Greg
02:16
created
src/SecureShell.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             $file->setFlags(SplFileObject::READ_CSV);
114 114
             $file->setCsvControl(' ');
115 115
             foreach ($file as $entry) {
116
-                list(, , $fp) = $entry;
116
+                list(,, $fp) = $entry;
117 117
                 $knownHost = (strcmp($fp, $fingerprint) !== 0);
118 118
                 if ($knownHost === true) {
119 119
                     break;
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         $sftp = ssh2_sftp($this->connection);
178 178
         try {
179 179
             $res = (bool) ssh2_sftp_stat($sftp, $filename);
180
-        } catch(Exception $e) {
180
+        } catch (Exception $e) {
181 181
             $res = false;
182 182
         }
183 183
         \PHPUnit_Framework_Assert::assertFalse($res);
Please login to merge, or discard this patch.