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 (#124)
by
unknown
01:00
created
src/ArrayToXml.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
     protected $numericTagNamePrefix = 'numeric_';
18 18
 
19
+    /**
20
+     * @param string $xmlEncoding
21
+     */
19 22
     public function __construct(
20 23
         array $array,
21 24
         $rootElement = '',
@@ -210,6 +213,9 @@  discard block
 block discarded – undo
210 213
         }
211 214
     }
212 215
 
216
+    /**
217
+     * @param string $rootElement
218
+     */
213 219
     protected function createRootElement($rootElement): DOMElement
214 220
     {
215 221
         if (is_string($rootElement)) {
@@ -238,6 +244,9 @@  discard block
 block discarded – undo
238 244
         return preg_replace('/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/', '', $value);
239 245
     }
240 246
 
247
+    /**
248
+     * @param string $docTypeStr
249
+     */
241 250
     protected function createDocTypeElement($docTypeStr)
242 251
     {
243 252
         if (! empty($docTypeStr)) {
Please login to merge, or discard this patch.