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 ( 02dba5...ee04e4 )
by Axel
03:09
created
src/Manager/ChangelogManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     
11 11
     /**
12 12
      * @param string $storagePath
13
-     * @return \ChangelogParser\Driver\Driver
13
+     * @return ChangelogManager
14 14
      */
15 15
     public function setStoragePath($storagePath) {
16 16
         $this->storagePath = $storagePath;
Please login to merge, or discard this patch.
src/Driver/Driver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
     abstract protected function formatData($data);
39 39
     
40 40
     /**
41
-     * @return mixed
41
+     * @return string
42 42
      */
43 43
     abstract protected function getLastVersion();
44 44
     
45 45
     /**
46
-     * @return mixed
46
+     * @return string
47 47
      */
48 48
     abstract protected function getAllVersions();
49 49
     
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
     
58 58
     /**
59
-     * @param mixed $data
59
+     * @param string $data
60 60
      */
61 61
     protected function storeResults($data) {
62 62
         if(is_file($this->storagePath)) {
Please login to merge, or discard this patch.