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 ( 5ae273...ff73f4 )
by Tobias
06:38
created
src/Provider/GeoIP2/Tests/GeoIP2Test.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
     /**
224 224
      * @param mixed $returnValue
225 225
      *
226
-     * @return \PHPUnit_Framework_MockObject_MockObject|GeoIP2Adapter
226
+     * @return GeoIP2Adapter
227 227
      */
228 228
     private function getGeoIP2AdapterMock($returnValue = '')
229 229
     {
Please login to merge, or discard this patch.
src/Common/Assert.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     }
42 42
 
43 43
     /**
44
-     * @param mixed  $value
44
+     * @param double  $value
45 45
      * @param string $message
46 46
      */
47 47
     public static function notNull($value, string $message = '')
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @param $value
60
+     * @param double $value
61 61
      * @param $message
62 62
      */
63 63
     private static function float($value, string $message)
Please login to merge, or discard this patch.
src/Common/Tests/ProviderAggregatorTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -152,6 +152,9 @@
 block discarded – undo
152 152
 
153 153
     public $result = [];
154 154
 
155
+    /**
156
+     * @param string $name
157
+     */
155 158
     public function __construct($name)
156 159
     {
157 160
         $this->name = $name;
Please login to merge, or discard this patch.
src/Plugin/PluginProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
      * @param Plugin[] $pluginList     A list of plugins
124 124
      * @param callable $clientCallable Callable making the HTTP call
125 125
      *
126
-     * @return callable
126
+     * @return \Closure
127 127
      */
128 128
     private function createPluginChain(array $pluginList, callable $clientCallable)
129 129
     {
Please login to merge, or discard this patch.
src/Provider/Geonames/Model/CountryInfo.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
     }
255 255
 
256 256
     /**
257
-     * @param int|null $population
257
+     * @param null|string $population
258 258
      *
259 259
      * @return CountryInfo
260 260
      */
Please login to merge, or discard this patch.
src/Provider/LocationIQ/LocationIQ.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -181,6 +181,9 @@
 block discarded – undo
181 181
         return self::BASE_API_URL.'/reverse.php?format=xml&lat=%F&lon=%F&addressdetails=1&zoom=%d&key='.$this->apiKey;
182 182
     }
183 183
 
184
+    /**
185
+     * @return string|null
186
+     */
184 187
     private function getNodeValue(\DOMNodeList $element)
185 188
     {
186 189
         return $element->length ? $element->item(0)->nodeValue : null;
Please login to merge, or discard this patch.
src/Provider/Nominatim/Nominatim.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param HttpClient  $client
39
-     * @param string|null $locale
40 39
      *
41 40
      * @return Nominatim
42 41
      */
Please login to merge, or discard this patch.
src/Common/Query/GeocodeQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,9 +170,9 @@
 block discarded – undo
170 170
 
171 171
     /**
172 172
      * @param string     $name
173
-     * @param mixed|null $default
173
+     * @param string|null $default
174 174
      *
175
-     * @return mixed
175
+     * @return null|string
176 176
      */
177 177
     public function getData(string $name, $default = null)
178 178
     {
Please login to merge, or discard this patch.