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 ( 837219...d297af )
by Oleg
02:03
created
examples/Routes/GetRoutePathPoints.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@
 block discarded – undo
23 23
 
24 24
 // Get a route with the path points
25 25
 $params = array(
26
-    "route_path_output" => "Points",
27
-    "route_id"          => $route_id
26
+	"route_path_output" => "Points",
27
+	"route_id"          => $route_id
28 28
 );
29 29
 
30 30
 $routeResults = (array)$route->getRoutePoints($params);
31 31
 
32 32
 if (isset($routeResults['addresses'])) {
33
-    foreach ($routeResults['addresses'] as $key => $address) {
34
-        $araddress = (array)$address;
33
+	foreach ($routeResults['addresses'] as $key => $address) {
34
+		$araddress = (array)$address;
35 35
 
36
-        if (isset($araddress['route_destination_id'])) {
37
-            echo "route_destination_id=".$araddress['route_destination_id']."<br>";
38
-        }
36
+		if (isset($araddress['route_destination_id'])) {
37
+			echo "route_destination_id=".$araddress['route_destination_id']."<br>";
38
+		}
39 39
 
40
-        if (isset($araddress['path_to_next'])) {
41
-            echo "path_to_next:<br>";
42
-            Route4Me::simplePrint($araddress['path_to_next']);
43
-        }
40
+		if (isset($araddress['path_to_next'])) {
41
+			echo "path_to_next:<br>";
42
+			Route4Me::simplePrint($araddress['path_to_next']);
43
+		}
44 44
 
45
-        echo "<br>";
46
-    }
45
+		echo "<br>";
46
+	}
47 47
 }
Please login to merge, or discard this patch.