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 ( 8911f3...d70a9b )
by Oleg
06:24 queued 03:56
created
examples/Addresses/insert_address_into_route_specific_position.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -25,21 +25,21 @@  discard block
 block discarded – undo
25 25
 $addresses = array();
26 26
 
27 27
 $params = array(
28
-    "route_id"  => $routeId,
29
-    "addresses" => array(
30
-        "0" => array(
31
-            "address"      => "Cabo Rojo, Cabo Rojo 00623, Puerto Rico",
32
-            "alias"        => "",
33
-            "lat"          => 18.086627,
34
-            "lng"          => -67.145735,
35
-            "curbside_lat" => 18.086627,
36
-            "curbside_lng" => -67.145735,
37
-            "is_departed"  => false,
38
-            "is_visited"   => false,
39
-            "sequence_no" => 3
40
-        )
41
-    ),
42
-    "optimal_position" => false
28
+	"route_id"  => $routeId,
29
+	"addresses" => array(
30
+		"0" => array(
31
+			"address"      => "Cabo Rojo, Cabo Rojo 00623, Puerto Rico",
32
+			"alias"        => "",
33
+			"lat"          => 18.086627,
34
+			"lng"          => -67.145735,
35
+			"curbside_lat" => 18.086627,
36
+			"curbside_lng" => -67.145735,
37
+			"is_departed"  => false,
38
+			"is_visited"   => false,
39
+			"sequence_no" => 3
40
+		)
41
+	),
42
+	"optimal_position" => false
43 43
 );
44 44
 
45 45
 $route1 = new Route();
@@ -53,5 +53,5 @@  discard block
 block discarded – undo
53 53
 assert(isset($result->addresses), "Can't insert a destination into the route");
54 54
 
55 55
 foreach ($result->addresses as $address) {
56
-    echo "Address -> ".$address->address, ", Sequence number -> ".$address->sequence_no."<br>";
56
+	echo "Address -> ".$address->address, ", Sequence number -> ".$address->sequence_no."<br>";
57 57
 }
Please login to merge, or discard this patch.