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 ( 682f51...d8d546 )
by Stan
03:16
created
src/Command/Executor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
      * @param bool           $isCommand Boolean flag which indicates that passed entity should
194 194
      *                                  be treated as a command
195 195
      *
196
-     * @return bool
196
+     * @return boolean|null
197 197
      */
198 198
     protected function triggerEvent(AbstractEntity $entity, AbstractEntity $parent = null, $isCommand = false)
199 199
     {
Please login to merge, or discard this patch.
src/Entity/Command.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return mixed
45
+     * @return string
46 46
      */
47 47
     public function getName()
48 48
     {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @return mixed
53
+     * @return string
54 54
      */
55 55
     public function getArgs()
56 56
     {
@@ -76,6 +76,9 @@  discard block
 block discarded – undo
76 76
         return $command;
77 77
     }
78 78
 
79
+    /**
80
+     * @param string $command
81
+     */
79 82
     protected function getArgsFromText($command, $text)
80 83
     {
81 84
         $length = strlen(static::PREFIX . $command);
Please login to merge, or discard this patch.