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.
Passed
Push — master ( b3cd52...71bd8a )
by Anton
02:19
created
src/Component/PharUpdate/Exception/Exception.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
      *
15 15
      * @param string $format    The format.
16 16
      * @param mixed  $value,... The value(s).
17
+     * @param string $value
17 18
      *
18 19
      * @return Exception The exception.
19 20
      */
Please login to merge, or discard this patch.
src/Console/MainCommand.php 1 patch
Unused Use Statements   -8 removed lines patch added patch discarded remove patch
@@ -11,17 +11,9 @@
 block discarded – undo
11 11
 use Deployer\Exception\Exception;
12 12
 use Deployer\Exception\GracefulShutdownException;
13 13
 use Deployer\Executor\Planner;
14
-use Deployer\Host\Host;
15
-use Deployer\Host\Localhost;
16
-use Symfony\Component\Console\Command\Command;
17
-use Symfony\Component\Console\Formatter\OutputFormatterStyle;
18
-use Symfony\Component\Console\Helper\QuestionHelper;
19
-use Symfony\Component\Console\Helper\Table;
20
-use Symfony\Component\Console\Input\InputArgument;
21 14
 use Symfony\Component\Console\Input\InputInterface as Input;
22 15
 use Symfony\Component\Console\Input\InputOption as Option;
23 16
 use Symfony\Component\Console\Output\OutputInterface as Output;
24
-use Symfony\Component\Console\Question\ChoiceQuestion;
25 17
 
26 18
 class MainCommand extends SelectCommand
27 19
 {
Please login to merge, or discard this patch.
src/Console/SshCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace Deployer\Console;
9 9
 
10 10
 use Deployer\Deployer;
11
-use Deployer\Host\Host;
12 11
 use Deployer\Host\Localhost;
13 12
 use Deployer\Task\Context;
14 13
 use Symfony\Component\Console\Command\Command;
Please login to merge, or discard this patch.
src/Console/WorkerCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,11 +7,9 @@
 block discarded – undo
7 7
 
8 8
 namespace Deployer\Console;
9 9
 
10
-use Deployer\Collection\PersistentCollection;
11 10
 use Deployer\Deployer;
12 11
 use Deployer\Exception\Exception;
13 12
 use Deployer\Exception\GracefulShutdownException;
14
-use Deployer\Exception\NonFatalException;
15 13
 use Deployer\Task\Context;
16 14
 use Symfony\Component\Console\Input\InputArgument;
17 15
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/Executor/ParallelExecutor.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -93,6 +93,7 @@
 block discarded – undo
93 93
     /**
94 94
      * @param Task[] $tasks
95 95
      * @param Host[] $hosts
96
+     * @param Planner $plan
96 97
      */
97 98
     public function run(array $tasks, array $hosts, $plan = null): int
98 99
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@  discard block
 block discarded – undo
7 7
 
8 8
 namespace Deployer\Executor;
9 9
 
10
-use Deployer\Collection\PersistentCollection;
11 10
 use Deployer\Configuration\Configuration;
12 11
 use Deployer\Console\Application;
13 12
 use Deployer\Deployer;
@@ -15,12 +14,10 @@  discard block
 block discarded – undo
15 14
 use Deployer\Exception\GracefulShutdownException;
16 15
 use Deployer\Host\Host;
17 16
 use Deployer\Host\Localhost;
18
-use Deployer\Host\Storage;
19 17
 use Deployer\Component\Ssh\Client;
20 18
 use Deployer\Selector\Selector;
21 19
 use Deployer\Task\Context;
22 20
 use Deployer\Task\Task;
23
-use Symfony\Component\Console\Helper\Table;
24 21
 use Symfony\Component\Console\Input\InputInterface;
25 22
 use Symfony\Component\Console\Output\OutputInterface;
26 23
 use Symfony\Component\Process\Process;
Please login to merge, or discard this patch.
src/Host/Host.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -76,16 +76,25 @@
 block discarded – undo
76 76
         return $this->config->get('user');
77 77
     }
78 78
 
79
+    /**
80
+     * @return null|string
81
+     */
79 82
     public function port()
80 83
     {
81 84
         return $this->config->get('port');
82 85
     }
83 86
 
87
+    /**
88
+     * @return null|string
89
+     */
84 90
     public function configFile()
85 91
     {
86 92
         return $this->config->get('config_file');
87 93
     }
88 94
 
95
+    /**
96
+     * @return null|string
97
+     */
89 98
     public function identityFile()
90 99
     {
91 100
         return $this->config->get('identity_file');
Please login to merge, or discard this patch.