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
Pull Request — master (#22)
by
unknown
01:55
created
src/TailCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $connectionParameters = config('tail.connections.'.$connection);
77 77
         
78
-        $port = isset($connectionParameters['port'])?$connectionParameters['port']: '22';
78
+        $port = isset($connectionParameters['port']) ? $connectionParameters['port'] : '22';
79 79
 
80 80
         $portCommand = isset($connectionParameters['port'])
81 81
             ? "-p {$connectionParameters['port']}"
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         $output = $this->output;
101 101
 
102
-        (new Process($command))->setTimeout(null)->run(function ($type, $line) use ($output) {
102
+        (new Process($command))->setTimeout(null)->run(function($type, $line) use ($output) {
103 103
             $output->write($line);
104 104
         });
105 105
     }
Please login to merge, or discard this patch.