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 ( a97d0f...9e3fc4 )
by Tobias
07:09 queued 14s
created
src/Provider/BingMaps/Tests/BingMapsTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 use Geocoder\IntegrationTest\BaseTestCase;
14 14
 use Geocoder\Location;
15
+use Geocoder\Provider\BingMaps\BingMaps;
15 16
 use Geocoder\Query\GeocodeQuery;
16 17
 use Geocoder\Query\ReverseQuery;
17
-use Geocoder\Provider\BingMaps\BingMaps;
18 18
 
19 19
 class BingMapsTest extends BaseTestCase
20 20
 {
Please login to merge, or discard this patch.
src/Provider/ArcGISOnline/Tests/ArcGISOnlineTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
 use Geocoder\Collection;
16 16
 use Geocoder\IntegrationTest\BaseTestCase;
17 17
 use Geocoder\Location;
18
+use Geocoder\Provider\ArcGISOnline\ArcGISOnline;
18 19
 use Geocoder\Query\GeocodeQuery;
19 20
 use Geocoder\Query\ReverseQuery;
20
-use Geocoder\Provider\ArcGISOnline\ArcGISOnline;
21 21
 
22 22
 class ArcGISOnlineTest extends BaseTestCase
23 23
 {
Please login to merge, or discard this patch.
src/Provider/Mapzen/Tests/MapzenTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
 
15 15
 use Geocoder\Collection;
16 16
 use Geocoder\IntegrationTest\BaseTestCase;
17
+use Geocoder\Provider\Mapzen\Mapzen;
17 18
 use Geocoder\Query\GeocodeQuery;
18 19
 use Geocoder\Query\ReverseQuery;
19
-use Geocoder\Provider\Mapzen\Mapzen;
20 20
 
21 21
 /**
22 22
  * @author Gary Gale <[email protected]>
Please login to merge, or discard this patch.
src/Provider/MaxMindBinary/Tests/MaxMindBinaryTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
 use Geocoder\Collection;
16 16
 use Geocoder\IntegrationTest\BaseTestCase;
17 17
 use Geocoder\Location;
18
+use Geocoder\Provider\MaxMindBinary\MaxMindBinary;
18 19
 use Geocoder\Query\GeocodeQuery;
19 20
 use Geocoder\Query\ReverseQuery;
20
-use Geocoder\Provider\MaxMindBinary\MaxMindBinary;
21 21
 
22 22
 class MaxMindBinaryTest extends BaseTestCase
23 23
 {
Please login to merge, or discard this patch.
src/Provider/ArcGISOnline/ArcGISOnline.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@
 block discarded – undo
16 16
 use Geocoder\Exception\InvalidArgument;
17 17
 use Geocoder\Exception\InvalidServerResponse;
18 18
 use Geocoder\Exception\UnsupportedOperation;
19
+use Geocoder\Http\Provider\AbstractHttpProvider;
19 20
 use Geocoder\Model\Address;
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.
src/Provider/Chain/Tests/ChainTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 namespace Geocoder\Provider\Chain\Tests;
14 14
 
15 15
 use Geocoder\Model\AddressCollection;
16
+use Geocoder\Provider\Chain\Chain;
17
+use Geocoder\Provider\Provider;
16 18
 use Geocoder\Query\GeocodeQuery;
17 19
 use Geocoder\Query\ReverseQuery;
18
-use Geocoder\Provider\Provider;
19
-use Geocoder\Provider\Chain\Chain;
20 20
 use Nyholm\NSA;
21 21
 use PHPUnit\Framework\TestCase;
22 22
 
Please login to merge, or discard this patch.
src/Provider/GeoIP2/Tests/GeoIP2Test.php 1 patch
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,18 +12,18 @@
 block discarded – undo
12 12
 
13 13
 namespace Geocoder\Provider\GeoIP2\Tests;
14 14
 
15
-use Geocoder\Collection;
16
-use Geocoder\IntegrationTest\BaseTestCase;
17
-use Geocoder\Location;
18
-use Geocoder\Query\GeocodeQuery;
19
-use Geocoder\Query\ReverseQuery;
20
-use Geocoder\Provider\GeoIP2\GeoIP2;
21
-use Geocoder\Provider\GeoIP2\GeoIP2Adapter;
22 15
 use GeoIp2\Database\Reader;
23 16
 use GeoIp2\Exception\AuthenticationException;
24 17
 use GeoIp2\Exception\OutOfQueriesException;
18
+use Geocoder\Collection;
25 19
 use Geocoder\Exception\InvalidCredentials;
26 20
 use Geocoder\Exception\QuotaExceeded;
21
+use Geocoder\IntegrationTest\BaseTestCase;
22
+use Geocoder\Location;
23
+use Geocoder\Provider\GeoIP2\GeoIP2;
24
+use Geocoder\Provider\GeoIP2\GeoIP2Adapter;
25
+use Geocoder\Query\GeocodeQuery;
26
+use Geocoder\Query\ReverseQuery;
27 27
 
28 28
 /**
29 29
  * @author Jens Wiese <[email protected]>
Please login to merge, or discard this patch.
src/Provider/Cache/ProviderCache.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
 namespace Geocoder\Provider\Cache;
14 14
 
15 15
 use Geocoder\Collection;
16
+use Geocoder\Provider\Provider;
16 17
 use Geocoder\Query\GeocodeQuery;
17 18
 use Geocoder\Query\ReverseQuery;
18
-use Geocoder\Provider\Provider;
19 19
 use Psr\SimpleCache\CacheInterface;
20 20
 
21 21
 /**
Please login to merge, or discard this patch.
src/Common/StatefulGeocoder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
 namespace Geocoder;
14 14
 
15 15
 use Geocoder\Model\Bounds;
16
+use Geocoder\Provider\Provider;
16 17
 use Geocoder\Query\GeocodeQuery;
17 18
 use Geocoder\Query\ReverseQuery;
18
-use Geocoder\Provider\Provider;
19 19
 
20 20
 /**
21 21
  * @author Tobias Nyholm <[email protected]>
Please login to merge, or discard this patch.