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 ( 691675...503bab )
by Tobias
07:29 queued 04:40
created
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 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.