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 ( 5b2683...2f55d1 )
by Miles
22:07
created
src/Cache/CacheProvider.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -130,7 +130,6 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Transfer the contents of the parent Vars object into a file for cache
132 132
      *
133
-     * @param \M1\Vars\Vars $provide Does the cache want to be on or off
134 133
      */
135 134
     public function makeCache(Vars $vars)
136 135
     {
@@ -186,7 +185,6 @@  discard block
 block discarded – undo
186 185
     /**
187 186
      * Sets the cache path
188 187
      *
189
-     * @param string $cache_path The cache path to set
190 188
      *
191 189
      * @throws \InvalidArgumentException If the cache path does not exist or is not writable
192 190
      *
@@ -222,7 +220,7 @@  discard block
 block discarded – undo
222 220
     /**
223 221
      * Returns how long the cache lasts for
224 222
      *
225
-     * @return int Cache expire time
223
+     * @return boolean Cache expire time
226 224
      */
227 225
     public function isHit()
228 226
     {
Please login to merge, or discard this patch.
src/Vars.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
     /**
447 447
      * Returns the Vars replacement variables
448 448
      *
449
-     * @return array The Vars replacement variables
449
+     * @return string The Vars replacement variables
450 450
      */
451 451
     public function getVariables()
452 452
     {
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
     /**
457 457
      * Returns the CacheProvider if set, if not return false
458 458
      *
459
-     * @return \M1\Vars\Cache\CacheProvider|false The CacheProvider or false
459
+     * @return CacheProvider The CacheProvider or false
460 460
      */
461 461
     public function getCache()
462 462
     {
Please login to merge, or discard this patch.