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 (#57)
by Faton
04:42
created
src/Optimizers/BaseOptimizer.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
     /**
31 31
      * Set binary Path
32 32
      *
33
-     * @param string|array $binaryPath
34
-     * @return string
33
+     * @param string $binaryPath
34
+     * @return BaseOptimizer
35 35
      */
36 36
     public function setBinaryPath($binaryPath)
37 37
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\ImageOptimizer\Optimizers;
4 4
 
5
-use Psr\Log\LoggerInterface;
6
-use Spatie\ImageOptimizer\DummyLogger;
7 5
 use Spatie\ImageOptimizer\Optimizer;
8
-use Symfony\Component\Process\Process;
9 6
 use Spatie\ImageOptimizer\OptimizerChain;
7
+use Symfony\Component\Process\Process;
10 8
 
11 9
 abstract class BaseOptimizer implements Optimizer
12 10
 {
Please login to merge, or discard this patch.