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/Image.php 1 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.