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 ( d61a38...3c2a31 )
by
unknown
03:20
created
src/AngryBytes/Cache/Adapter/File.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
      * Unwrap lifetime from data
164 164
      *
165 165
      * @param string $wrappedData
166
-     * @return void
166
+     * @return string[]
167 167
      **/
168 168
     private function unWrapLifeTime($wrappedData)
169 169
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace AngryBytes\Cache\Adapter;
11 11
 
12 12
 use AngryBytes\Cache\Adapter;
13
-
14 13
 use AngryBytes\Cache\ResultNotFound;
15 14
 
16 15
 use \InvalidArgumentException as InvalidArgumentException;
Please login to merge, or discard this patch.
src/AngryBytes/Cache/Adapter/Memcached.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use AngryBytes\Cache\Adapter;
14 14
 use AngryBytes\Cache\ResultNotFound;
15
-
16 15
 use AngryBytes\Cache\Adapter\Memcached\AdapterInterface as MemcachedAdapterInterface;
17 16
 use AngryBytes\Cache\Adapter\Memcached\Adapter as MemcachedAdapter;
18 17
 
Please login to merge, or discard this patch.
src/AngryBytes/Cache/Cache.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -108,10 +108,6 @@
 block discarded – undo
108 108
      * This method accepts alpha numeric strings, but also serializable objects.
109 109
      * All of these will be concatenated into a single id string.
110 110
      *
111
-     * @param mixed $keyPart1
112
-     * @param mixed $keyPart2
113
-     * ...
114
-     * @param  mixed  $keyPartN
115 111
      * @return string
116 112
      **/
117 113
     public static function key()
Please login to merge, or discard this patch.
src/AngryBytes/Cache/ResultNotFound.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * String overload
67 67
      *
68
-     * @return void
68
+     * @return string
69 69
      **/
70 70
     public function __toString()
71 71
     {
Please login to merge, or discard this patch.