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 ( 235d7f...9d89b3 )
by Tobias
02:58
created
src/Plugin/PluginProvider.php 2 patches
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.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
 use Geocoder\Collection;
16 16
 use Geocoder\Exception\Exception;
17 17
 use Geocoder\Exception\LogicException;
18
+use Geocoder\Plugin\Exception\LoopException;
18 19
 use Geocoder\Plugin\Promise\GeocoderFulfilledPromise;
19 20
 use Geocoder\Plugin\Promise\GeocoderRejectedPromise;
20 21
 use Geocoder\Provider\Provider;
21 22
 use Geocoder\Query\GeocodeQuery;
22 23
 use Geocoder\Query\Query;
23 24
 use Geocoder\Query\ReverseQuery;
24
-use Geocoder\Plugin\Exception\LoopException;
25 25
 
26 26
 /**
27 27
  * @author Joel Wurtz <[email protected]>
Please login to merge, or discard this patch.
src/Plugin/Tests/Plugin/LoggerPluginTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 
15 15
 use Geocoder\Exception\QuotaExceeded;
16 16
 use Geocoder\Model\AddressCollection;
17
-use Geocoder\Plugin\Plugin\LoggerPlugin;
18 17
 use Geocoder\Plugin\PluginProvider;
18
+use Geocoder\Plugin\Plugin\LoggerPlugin;
19 19
 use Geocoder\Provider\Provider;
20 20
 use Geocoder\Query\GeocodeQuery;
21 21
 use PHPUnit\Framework\TestCase;
Please login to merge, or discard this patch.
src/Provider/LocationIQ/LocationIQ.php 2 patches
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.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@
 block discarded – undo
13 13
 namespace Geocoder\Provider\LocationIQ;
14 14
 
15 15
 use Geocoder\Collection;
16
-use Geocoder\Exception\InvalidServerResponse;
17 16
 use Geocoder\Exception\InvalidCredentials;
17
+use Geocoder\Exception\InvalidServerResponse;
18
+use Geocoder\Http\Provider\AbstractHttpProvider;
18 19
 use Geocoder\Location;
19 20
 use Geocoder\Model\AddressBuilder;
20 21
 use Geocoder\Model\AddressCollection;
22
+use Geocoder\Provider\Provider;
21 23
 use Geocoder\Query\GeocodeQuery;
22 24
 use Geocoder\Query\ReverseQuery;
23
-use Geocoder\Http\Provider\AbstractHttpProvider;
24
-use Geocoder\Provider\Provider;
25 25
 use Http\Client\HttpClient;
26 26
 
27 27
 /**
Please login to merge, or discard this patch.