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/Nominatim/Nominatim.php 2 patches
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.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
 use Geocoder\Collection;
16 16
 use Geocoder\Exception\InvalidServerResponse;
17 17
 use Geocoder\Exception\UnsupportedOperation;
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\Nominatim\Model\NominatimAddress;
23
+use Geocoder\Provider\Provider;
21 24
 use Geocoder\Query\GeocodeQuery;
22 25
 use Geocoder\Query\ReverseQuery;
23
-use Geocoder\Http\Provider\AbstractHttpProvider;
24
-use Geocoder\Provider\Provider;
25
-use Geocoder\Provider\Nominatim\Model\NominatimAddress;
26 26
 use Http\Client\HttpClient;
27 27
 
28 28
 /**
Please login to merge, or discard this patch.
src/Provider/GoogleMaps/Tests/GoogleMapsTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@
 block discarded – undo
17 17
 use Geocoder\Location;
18 18
 use Geocoder\Model\Address;
19 19
 use Geocoder\Model\AddressCollection;
20
+use Geocoder\Provider\GoogleMaps\GoogleMaps;
20 21
 use Geocoder\Provider\GoogleMaps\Model\GoogleAddress;
21 22
 use Geocoder\Query\GeocodeQuery;
22 23
 use Geocoder\Query\ReverseQuery;
23
-use Geocoder\Provider\GoogleMaps\GoogleMaps;
24 24
 use Psr\Http\Message\RequestInterface;
25 25
 
26 26
 class GoogleMapsTest extends BaseTestCase
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.
src/Provider/IpInfo/Tests/IpInfoTest.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\IntegrationTest\BaseTestCase;
16 16
 use Geocoder\Location;
17
+use Geocoder\Provider\IpInfo\IpInfo;
17 18
 use Geocoder\Query\GeocodeQuery;
18 19
 use Geocoder\Query\ReverseQuery;
19
-use Geocoder\Provider\IpInfo\IpInfo;
20 20
 
21 21
 class IpInfoTest extends BaseTestCase
22 22
 {
Please login to merge, or discard this patch.