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 ( c00205...1a2819 )
by Beñat
02:00
created
src/LIN3S/CS/Checker/EsLint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -99,6 +99,9 @@
 block discarded – undo
99 99
         }
100 100
     }
101 101
 
102
+    /**
103
+     * @param string $jsFileContent
104
+     */
102 105
     private static function extractContent($jsFileContent) : array
103 106
     {
104 107
         $position = mb_strpos($jsFileContent, 'module.exports = ');
Please login to merge, or discard this patch.
src/LIN3S/CS/Checker/Stylelint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -101,6 +101,9 @@
 block discarded – undo
101 101
         }
102 102
     }
103 103
 
104
+    /**
105
+     * @param string $jsFileContent
106
+     */
104 107
     private static function extractContent($jsFileContent) : array
105 108
     {
106 109
         $position = mb_strpos($jsFileContent, 'module.exports = ');
Please login to merge, or discard this patch.
src/LIN3S/CS/Checker/ToolAvailability.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
  */
22 22
 trait ToolAvailability
23 23
 {
24
+    /**
25
+     * @param string $tool
26
+     */
24 27
     protected static function isAvailable($tool)
25 28
     {
26 29
         $process = new Process(sprintf('%s -v', $tool));
Please login to merge, or discard this patch.