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
Pull Request — master (#2)
by Miguel A.
03:08
created
src/IniParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @param $string
55
+     * @param string $string
56 56
      *
57 57
      * @return IniSection[]
58 58
      * @throws InvalidDataException
Please login to merge, or discard this patch.
src/IniSection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * Section constructor.
26 26
      *
27
-     * @param $name
27
+     * @param string $name
28 28
      * @param IniSection $parent
29 29
      */
30 30
     public function __construct($name, IniSection $parent = null)
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      * @param string $itemName
152
-     * @param string|array|bool|null $itemValue
152
+     * @param string $itemValue
153 153
      *
154 154
      * @return $this
155 155
      * @throws InvalidDataException
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @return array
203
+     * @return string[]
204 204
      */
205 205
     protected function renderName()
206 206
     {
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      * @param string $name
241 241
      * @param string $value
242 242
      *
243
-     * @return array
243
+     * @return string[]
244 244
      */
245 245
     protected function renderStringItem($name, $value)
246 246
     {
Please login to merge, or discard this patch.