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 (#6)
by
unknown
05:09
created
src/SitemapNews.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
         return $this;
51 51
     }
52 52
 
53
+    /**
54
+     * @param News $news
55
+     */
53 56
     protected function getNewsNode($news)
54 57
     {
55 58
         $node = $this->createNewsElement('news');
@@ -66,6 +69,9 @@  discard block
 block discarded – undo
66 69
         return $node;
67 70
     }
68 71
 
72
+    /**
73
+     * @param DOMElement $node
74
+     */
69 75
     protected function appendNewsElements($node, $news)
70 76
     {
71 77
         $this->appendNewsElementValue($node, 'access', $news->getAccess());
@@ -76,6 +82,9 @@  discard block
 block discarded – undo
76 82
         $this->appendNewsElementValue($node, 'stock_tickers', $news->getStockTickers());
77 83
     }
78 84
 
85
+    /**
86
+     * @param string $name
87
+     */
79 88
     protected function appendNewsElementValue($node, $name, $value)
80 89
     {
81 90
         if ($value) {
Please login to merge, or discard this patch.