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
Push — master ( 4bb723...4c5500 )
by Freek
01:16
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 function setTemporaryDirectory($tempDir)
34 37
     {
35 38
         $this->temporaryDirectory = $tempDir;
@@ -139,6 +142,9 @@  discard block
 block discarded – undo
139 142
         return ! is_null($this->manipulations->getFirstManipulationArgument('optimize'));
140 143
     }
141 144
 
145
+    /**
146
+     * @param string $path
147
+     */
142 148
     protected function performOptimization($path, array $optimizerChainConfiguration)
143 149
     {
144 150
         $optimizerChain = OptimizerChainFactory::create();
@@ -154,6 +160,9 @@  discard block
 block discarded – undo
154 160
         $optimizerChain->optimize($path);
155 161
     }
156 162
 
163
+    /**
164
+     * @param string $outputPath
165
+     */
157 166
     protected function addFormatManipulation($outputPath)
158 167
     {
159 168
         if ($this->manipulations->hasManipulation('format')) {
Please login to merge, or discard this patch.