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 ( f8b914...a425f6 )
by Oleg
01:57
created
examples/multiple_depot_multiple_driver.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -26,20 +26,20 @@
 block discarded – undo
26 26
 
27 27
 $addresses = array();
28 28
 foreach ($json as $address) {
29
-    $addresses[] = Address::fromArray($address);
29
+	$addresses[] = Address::fromArray($address);
30 30
 }
31 31
 
32 32
 $parameters = RouteParameters::fromArray(array(
33
-    "algorithm_type"          => AlgorithmType::CVRP_TW_SD,
34
-    "distance_unit"           => DistanceUnit::MILES,
35
-    "device_type"             => DeviceType::WEB,
36
-    "optimize"                => OptimizationType::DISTANCE,
37
-    "metric"                  => Metric::GEODESIC,
38
-    "route_max_duration"      => 86400 * 2,
39
-    "travel_mode"             => TravelMode::DRIVING,
40
-    "vehicle_capacity"        => 50,
41
-    "vehicle_max_distance_mi" => 10000,
42
-    "parts"                   => 50
33
+	"algorithm_type"          => AlgorithmType::CVRP_TW_SD,
34
+	"distance_unit"           => DistanceUnit::MILES,
35
+	"device_type"             => DeviceType::WEB,
36
+	"optimize"                => OptimizationType::DISTANCE,
37
+	"metric"                  => Metric::GEODESIC,
38
+	"route_max_duration"      => 86400 * 2,
39
+	"travel_mode"             => TravelMode::DRIVING,
40
+	"vehicle_capacity"        => 50,
41
+	"vehicle_max_distance_mi" => 10000,
42
+	"parts"                   => 50
43 43
 ));
44 44
 
45 45
 $optimizationParams = new OptimizationProblemParams;
Please login to merge, or discard this patch.