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
01:58
created
src/Provider/OpenWeatherMap.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
72 72
      * @param string $apiResponse
73 73
      *
74
-     * @return array
74
+     * @return string[]
75 75
      */
76 76
     public function getSuccessLines(Event $event, $apiResponse)
77 77
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
101 101
      * @param string $apiResponse
102 102
      *
103
-     * @return array
103
+     * @return string[]
104 104
      */
105 105
     public function getNoResultsLines(Event $event, $apiResponse)
106 106
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
114 114
      * @param string $apiError
115 115
      *
116
-     * @return array
116
+     * @return string[]
117 117
      */
118 118
     public function getRejectLines(Event $event, $apiError)
119 119
     {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     /**
124 124
      * Returns an array of lines for the help response
125 125
      *
126
-     * @return array
126
+     * @return string[]
127 127
      */
128 128
     public function getHelpLines()
129 129
     {
Please login to merge, or discard this patch.
src/Provider/Wunderground.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *
69 69
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
70 70
      * @param string $apiResponse
71
-     * @return array
71
+     * @return string[]
72 72
      */
73 73
     public function getSuccessLines(Event $event, $apiResponse)
74 74
     {
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      *
96 96
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
97 97
      * @param string $apiResponse
98
-     * @return array
98
+     * @return string[]
99 99
      */
100 100
     public function getNoResultsLines(Event $event, $apiResponse)
101 101
     {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      *
108 108
      * @param \Phergie\Irc\Plugin\React\Command\CommandEvent $event
109 109
      * @param string $apiError
110
-     * @return array
110
+     * @return string[]
111 111
      */
112 112
     public function getRejectLines(Event $event, $apiError)
113 113
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     /**
118 118
      * Returns an array of lines for the help response
119 119
      *
120
-     * @return array
120
+     * @return string[]
121 121
      */
122 122
     public function getHelpLines()
123 123
     {
Please login to merge, or discard this patch.