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 ( 61d0e5...32f4b0 )
by Askupa
03:35
created
cache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * Update the compiled CSS for the given handle.
58 58
      * 
59 59
      * @param string $handle The handle of the stylesheet
60
-     * @param type $compiled_css
60
+     * @param string $compiled_css
61 61
      */
62 62
     public function update( $handle, $compiled_css )
63 63
     {
Please login to merge, or discard this patch.
compiler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     /**
142 142
      * Register a value retrieval function and associate it with the given handle
143 143
      * 
144
-     * @param type $handle The stylesheet's name/id
144
+     * @param string $handle The stylesheet's name/id
145 145
      * @param type $callback
146 146
      */
147 147
     public function register_callback( $handle, $callback )
@@ -151,6 +151,9 @@  discard block
 block discarded – undo
151 151
     
152 152
     /**
153 153
      * Register a filter function for a given stylesheet handle.
154
+     * @param string $handle
155
+     * @param string $filter_name
156
+     * @param callable $callback
154 157
      */
155 158
     public function register_filter( $handle, $filter_name, $callback )
156 159
     {
Please login to merge, or discard this patch.