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 ( 3edf4c...59342b )
by Miša
01:21
created
src/Commands/TestTranslationExtensions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
     /**
50 50
      * Compose the phpunit command to be ran in order to perform the extension tests.
51 51
      *
52
-     * @param string|null $extensionToRun
53 52
      * @return string
54 53
      */
55 54
     protected function makeCommand()
Please login to merge, or discard this patch.
src/Translates.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
          * Remove all translations from the persistent storage.
253 253
          * This is called after the model is deleted.
254 254
          *
255
-         * @param  string $language
255
+         * @param  string $languages
256 256
          * @return bool
257 257
          */
258 258
         public function deleteTranslations(...$languages): bool
Please login to merge, or discard this patch.
src/Drivers/JSONTranslationDriver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -202,6 +202,9 @@
 block discarded – undo
202 202
         return "meta" . DIRECTORY_SEPARATOR . "{$language}.json";
203 203
     }
204 204
 
205
+    /**
206
+     * @param string $language
207
+     */
205 208
     protected function getLanguageModelMap($language)
206 209
     {
207 210
         if (!$this->disk->has($this->mapName($language))) {
Please login to merge, or discard this patch.