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
Branch master (77f5a0)
by Christian
03:58
created
src/Console/Application.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use Netresearch\Kite\Exception;
20 20
 use Netresearch\Kite\Service\Config;
21 21
 use Netresearch\Kite\Console\Command\JobCommand;
22
-use Netresearch\Kite\Service\Factory;
23 22
 use Symfony\Component\Console\Command\Command;
24 23
 use Symfony\Component\Console\Input\InputInterface;
25 24
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.
src/Console/Command/JobCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use Netresearch\Kite\Service\Descriptor;
23 23
 use Symfony\Component\Console\Command\Command;
24 24
 use Symfony\Component\Console\Input\InputInterface;
25
-
26 25
 use Symfony\Component\Console\Output\ConsoleOutput;
27 26
 use Symfony\Component\Console\Output\OutputInterface;
28 27
 
Please login to merge, or discard this patch.
src/Console/Output/ConsoleOutput.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * ConsoleOutput constructor.
30 30
      *
31
-     * @param int|mixed                     $verbosity The verbosity
31
+     * @param integer                     $verbosity The verbosity
32 32
      * @param boolean                       $decorated If output should be decorated
33 33
      * @param OutputFormatterInterface|null $formatter Formatter
34 34
      */
Please login to merge, or discard this patch.
src/Console/Output/Output.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Constructor.
54 54
      *
55
-     * @param mixed                         $stream    A stream resource
55
+     * @param resource                         $stream    A stream resource
56 56
      * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
57 57
      * @param bool|null                     $decorated Whether to decorate messages (null for auto-guessing)
58 58
      * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Write to output
132 132
      *
133
-     * @param array|string $messages Messages
133
+     * @param string|null $messages Messages
134 134
      * @param bool         $newline  Whether to append a newline
135 135
      * @param int          $type     The output type
136 136
      *
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 namespace Netresearch\Kite\Console\Output;
15 15
 use Symfony\Component\Console\Formatter\OutputFormatterInterface;
16
-
17 16
 use Symfony\Component\Console\Output\StreamOutput;
18 17
 use Symfony\Component\Console\Formatter\OutputFormatterStyle;
19 18
 
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionLanguage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace Netresearch\Kite\ExpressionLanguage;
16 16
 use Netresearch\Kite\Task;
17
-
18 17
 use Symfony\Component\Console\Question\ChoiceQuestion;
19 18
 use Symfony\Component\Console\Question\ConfirmationQuestion;
20 19
 use Symfony\Component\Console\Question\Question;
Please login to merge, or discard this patch.
src/Service/Composer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Service;
16 16
 use Netresearch\Kite\Job;
17 17
 use Netresearch\Kite\Service\Composer\Package;
18
-use Netresearch\Kite\Task;
19 18
 use Netresearch\Kite\Exception;
20 19
 use Netresearch\Kite\Tasks;
21 20
 
Please login to merge, or discard this patch.
src/Service/Console.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Service;
16 16
 
17 17
 use Netresearch\Kite\Console\Output\Output;
18
-
19 18
 use Symfony\Component\Console\Application;
20 19
 use Symfony\Component\Console\Helper;
21 20
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/Service/Descriptor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
  */
13 13
 
14 14
 namespace Netresearch\Kite\Service;
15
-use Netresearch\Kite\Exception;
16 15
 use Netresearch\Kite\Task;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
src/Service/Process.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
      * @param callable|null $callback A PHP callback to run whenever there is some
136 136
      *                                output available on STDOUT or STDERR
137 137
      *
138
-     * @return mixed The output of the shell command or FALSE if the command returned a non-zero exit code and $ignoreErrors was enabled.
138
+     * @return null|string The output of the shell command or FALSE if the command returned a non-zero exit code and $ignoreErrors was enabled.
139 139
      */
140 140
     public function run($callback = NULL)
141 141
     {
Please login to merge, or discard this patch.