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 ( aee46c...48b3b3 )
by Dominic
02:09
created
src/MetricInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -11,26 +11,31 @@
 block discarded – undo
11 11
      * @param string $key
12 12
      * @param mixed $value
13 13
      * @param string $type
14
+     * @return void
14 15
      */
15 16
     public function __construct($key, $value, $type);
16 17
 
17 18
     /**
18 19
      * @param string $key
20
+     * @return void
19 21
      */
20 22
     public function setKey($key);
21 23
 
22 24
     /**
23 25
      * @param mixed $value
26
+     * @return void
24 27
      */
25 28
     public function setValue($value);
26 29
 
27 30
     /**
28 31
      * @param string $type
32
+     * @return void
29 33
      */
30 34
     public function setType($type);
31 35
 
32 36
     /**
33 37
      * @param float $sampleRate
38
+     * @return void
34 39
      */
35 40
     public function setSampleRate($sampleRate);
36 41
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * @param String[] $data
103 103
      * @param int      $maxLength
104 104
      * @param string   $glue
105
-     * @return array<array<int,string>>
105
+     * @return string[]
106 106
      */
107 107
     protected function fillPackets(array $data, $maxLength, $glue = "\n")
108 108
     {
Please login to merge, or discard this patch.