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 ( 27954e...8824ec )
by Tobias
04:24 queued 02:19
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/Query/ReverseQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
     /**
99 99
      * @param string $name
100
-     * @param mixed  $value
100
+     * @param string  $value
101 101
      *
102 102
      * @return ReverseQuery
103 103
      */
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/Provider/GoogleMaps/Model/GoogleAddress.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -339,7 +339,7 @@
 block discarded – undo
339 339
     }
340 340
 
341 341
     /**
342
-     * @param null $premise
342
+     * @param null|string $premise
343 343
      *
344 344
      * @return GoogleAddress
345 345
      */
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/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.