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 ( d57de7...55456e )
by Norbert
02:00
created
src/Parser.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param $pattern
66
+     * @param string $pattern
67 67
      * @return AST\Pattern
68 68
      */
69 69
     public function getAST($pattern)
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
     /**
240 240
      * @param array $array
241
-     * @return bool
241
+     * @return null|boolean
242 242
      * @throws PatternException
243 243
      */
244 244
     private function getNextArrayElement(array &$array)
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 
286 286
     /**
287 287
      * @param $unexpectedToken
288
-     * @param null $expected
288
+     * @param string $expected
289 289
      * @throws PatternException
290 290
      */
291 291
     private function unexpectedSyntaxError($unexpectedToken, $expected = null)
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @param null $expected
302
+     * @param string $expected
303 303
      * @throws PatternException
304 304
      */
305 305
     private function unexpectedEndOfString($expected = null)
Please login to merge, or discard this patch.