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.
Passed
Push — master ( 386c7e...6cd0a7 )
by Oleg
05:41 queued 47s
created
examples/Activities/GetActivities.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Route;
10 9
 	
11 10
 	// Set the api key in the Route4Me class
12 11
 	Route4Me::setApiKey('11111111111111111111111111111111');
Please login to merge, or discard this patch.
examples/Activities/SearchActivities.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Route;
10 9
 	
11 10
 	// Example refers to activities by activity_type parameter.
12 11
 	
Please login to merge, or discard this patch.
examples/Activities/SendUserMessage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\AvtivityParameters;
10 9
 	
11 10
 	// Set the api key in the Route4me class
12 11
 	Route4Me::setApiKey('11111111111111111111111111111111');
Please login to merge, or discard this patch.
examples/AddressBook/AddAddressBookLocation.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Route;
10 9
 	
11 10
 	// Set the api key in the Route4me class
12 11
 	Route4Me::setApiKey('11111111111111111111111111111111');
Please login to merge, or discard this patch.
examples/Addresses/RemoveDestinationFromOptimization.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Address;
10 9
 	use Route4Me\OptimizationProblem;
11 10
 	
12 11
 	// Set the api key in the Route4Me class
Please login to merge, or discard this patch.
examples/Addresses/RemoveRouteDestination.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Route;
10
-	use Route4Me\OptimizationProblem;
11 10
 	
12 11
 	// Set the api key in the Route4Me class
13 12
 	Route4Me::setApiKey('11111111111111111111111111111111');
Please login to merge, or discard this patch.
examples/AvoidanceZones/GetAvoidanceZones.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Enum\TerritoryTypes;
10 9
 	// Set the api key in the Route4Me class
11 10
 	Route4Me::setApiKey('11111111111111111111111111111111');
12 11
 	
Please login to merge, or discard this patch.
examples/Geocoding/forward_geocode.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9
-	use Route4Me\Route;
10 9
 	
11 10
 	// Set the api key in the Route4me class
12 11
 	Route4Me::setApiKey('11111111111111111111111111111111');
Please login to merge, or discard this patch.
examples/multiple_depot_with_time_window.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,14 +6,12 @@
 block discarded – undo
6 6
 use Route4Me\Enum\OptimizationType;
7 7
 use Route4Me\OptimizationProblem;
8 8
 use Route4Me\OptimizationProblemParams;
9
-use Route4Me\Enum\AlgorithmType;
10 9
 use Route4Me\Enum\DistanceUnit;
11 10
 use Route4Me\Enum\DeviceType;
12 11
 use Route4Me\Enum\TravelMode;
13 12
 use Route4Me\Enum\Metric;
14 13
 use Route4Me\RouteParameters;
15 14
 use Route4Me\Address;
16
-use Route4Me\Route;
17 15
 
18 16
 Route4Me::setApiKey('11111111111111111111111111111111');
19 17
 
Please login to merge, or discard this patch.