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 ( a0b1d8...98f4b9 )
by De
01:45
created
src/Cache.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@  discard block
 block discarded – undo
23 23
     
24 24
     private $collection;
25 25
     
26
+    /**
27
+     * @param string $collectionName
28
+     */
26 29
     public function __construct(Database $database, $collectionName)
27 30
     {
28 31
         $this->collection = $database
@@ -150,7 +153,7 @@  discard block
 block discarded – undo
150 153
      *
151 154
      * @param string                    $key    The key of the item to store.
152 155
      * @param mixed                     $value  The value of the item to store, must be serializable.
153
-     * @param null|int|\DateInterval    $ttl    Optional. The TTL value of this item. If no value is sent and
156
+     * @param integer|null    $ttl    Optional. The TTL value of this item. If no value is sent and
154 157
      *                                          the driver supports TTL then the library may set a default value
155 158
      *                                          for it or let the driver take care of that.
156 159
      * @param array                     $tags   List of tags
Please login to merge, or discard this patch.