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 ( 144a2d...5488bd )
by Greg
02:09
created
src/SecureShell.php 1 patch
Spacing   +2 added lines, -2 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)
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
         $sftp = ssh2_sftp($connection);
195 195
         try {
196 196
             $res = 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.