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 (#66)
by
unknown
01:15
created
src/GlideConversion.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,9 @@
 block discarded – undo
72 72
         }
73 73
     }
74 74
 
75
+    /**
76
+     * @param string $inputFile
77
+     */
75 78
     private function createGlideServer($inputFile, string $watermarkPath = null): Server
76 79
     {
77 80
         $config = [
Please login to merge, or discard this patch.
src/Image.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace Spatie\Image;
4 4
 
5 5
 use BadMethodCallException;
6
-use Spatie\Image\Exceptions\InvalidImageDriver;
7
-use Spatie\ImageOptimizer\OptimizerChainFactory;
8 6
 use Intervention\Image\ImageManagerStatic as InterventionImage;
7
+use Spatie\ImageOptimizer\OptimizerChainFactory;
8
+use Spatie\Image\Exceptions\InvalidImageDriver;
9 9
 
10 10
 /** @mixin \Spatie\Image\Manipulations */
11 11
 class Image
Please login to merge, or discard this patch.
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
         return new static($pathToImage);
31 31
     }
32 32
 
33
+    /**
34
+     * @param string $tempDir
35
+     */
33 36
     public static function setTemporaryDirectory($tempDir)
34 37
     {
35 38
         self::$temporaryDirectory = $tempDir;
@@ -138,6 +141,9 @@  discard block
 block discarded – undo
138 141
         return ! is_null($this->manipulations->getFirstManipulationArgument('optimize'));
139 142
     }
140 143
 
144
+    /**
145
+     * @param string $path
146
+     */
141 147
     protected function performOptimization($path, array $optimizerChainConfiguration)
142 148
     {
143 149
         $optimizerChain = OptimizerChainFactory::create();
@@ -153,6 +159,9 @@  discard block
 block discarded – undo
153 159
         $optimizerChain->optimize($path);
154 160
     }
155 161
 
162
+    /**
163
+     * @param string $outputPath
164
+     */
156 165
     protected function addFormatManipulation($outputPath)
157 166
     {
158 167
         if ($this->manipulations->hasManipulation('format')) {
Please login to merge, or discard this patch.