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 ( cf0793...0a95dc )
by Freek
02:04
created
src/TailCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         $connectionParameters = config('tail.connections.'.$connection);
77 77
 
78 78
         if (isset($connectionParameters['port'])) {
79
-        	$portCommand =  "-p {$connectionParameters['port']}";
79
+            $portCommand =  "-p {$connectionParameters['port']}";
80 80
         }
81 81
 
82 82
         $this->guardAgainstInvalidConnectionParameters($connectionParameters);
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,12 +76,12 @@  discard block
 block discarded – undo
76 76
         $connectionParameters = config('tail.connections.'.$connection);
77 77
 
78 78
         if (isset($connectionParameters['port'])) {
79
-        	$portCommand =  "-p {$connectionParameters['port']}";
79
+        	$portCommand = "-p {$connectionParameters['port']}";
80 80
         }
81 81
 
82 82
         $this->guardAgainstInvalidConnectionParameters($connectionParameters);
83 83
 
84
-        $tailCommand = 'ssh '.($connectionParameters['user'] == '' ? '' : $connectionParameters['user'].'@').$connectionParameters['host']." " . $portCommand . " -T 'cd ".$connectionParameters['logDirectory'].';tail -n '.$this->option('lines')." -f $(ls -t | head -n 1)'";
84
+        $tailCommand = 'ssh '.($connectionParameters['user'] == '' ? '' : $connectionParameters['user'].'@').$connectionParameters['host']." ".$portCommand." -T 'cd ".$connectionParameters['logDirectory'].';tail -n '.$this->option('lines')." -f $(ls -t | head -n 1)'";
85 85
 
86 86
         $this->info('start tailing latest remote log on host '.$connectionParameters['host'].' (port '.$port.') in directory '.$connectionParameters['logDirectory']);
87 87
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     {
98 98
         $output = $this->output;
99 99
 
100
-        (new Process($command))->setTimeout(null)->run(function ($type, $line) use ($output) {
100
+        (new Process($command))->setTimeout(null)->run(function($type, $line) use ($output) {
101 101
             $output->write($line);
102 102
         });
103 103
     }
Please login to merge, or discard this patch.