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
Branch master (ae3ad2)
by Dan
04:30
created
examples/MemberConfiguration/get_account_config_key_data.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,7 @@
 block discarded – undo
25 25
 		if (is_array($value))
26 26
 		{
27 27
 			Route4Me::simplePrint($value);
28
-		}
29
-		else 
28
+		} else 
30 29
 		{
31 30
 			echo "$key => $value <br>";
32 31
 		}
Please login to merge, or discard this patch.
examples/MemberConfiguration/get_specific_account_config_key_data.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
 		if (is_array($value))
27 27
 		{
28 28
 			Route4Me::simplePrint($value);
29
-		}
30
-		else 
29
+		} else 
31 30
 		{
32 31
 			echo "$key => $value <br>";
33 32
 		}
Please login to merge, or discard this patch.
examples/multiple_depot_with_time_window.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
 	if (is_string($value))
52 52
 	{
53 53
 		echo $key." --> ".$value."<br>";
54
-	}
55
-	else 
54
+	} else 
56 55
 	{
57 56
 		echo "************ $key ************* <br>";
58 57
 		Route4Me::simplePrint((array)$value);
Please login to merge, or discard this patch.
examples/SingleDepotMultipleDriverNoTimeWindow.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
 	if (is_string($value))
54 54
 	{
55 55
 		echo $key." --> ".$value."<br>";
56
-	}
57
-	else 
56
+	} else 
58 57
 	{
59 58
 		echo "************ $key ************* <br>";
60 59
 		Route4Me::simplePrint((array)$value);
Please login to merge, or discard this patch.
examples/Routes/GetRoutePathPoints.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,9 @@
 block discarded – undo
28 28
 		foreach ($routeResults['addresses'] as $key => $address) {
29 29
 			$araddress = (array)$address;
30 30
 
31
-			if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
31
+			if (isset($araddress['route_destination_id'])) {
32
+				echo "route_destination_id=".$araddress['route_destination_id']."<br>";
33
+			}
32 34
 			
33 35
 			if (isset($araddress['path_to_next'])) {
34 36
 				echo "path_to_next:<br>";
Please login to merge, or discard this patch.
examples/MultipleDepotMultipleDriverWith24StopsTimeWindow.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
 	if (is_string($value))
52 52
 	{
53 53
 		echo $key." --> ".$value."<br>";
54
-	}
55
-	else 
54
+	} else 
56 55
 	{
57 56
 		echo "************ $key ************* <br>";
58 57
 		Route4Me::simplePrint((array)$value);
Please login to merge, or discard this patch.
examples/Tracking/TrackDeviceLastLocationHistory.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,9 +43,10 @@
 block discarded – undo
43 43
 	
44 44
 	$result = $route->GetLastLocation($params);
45 45
 	//var_dump($result);die("");
46
-	if (isset($result->tracking_history))
47
-	foreach ($result->tracking_history as $history) {
46
+	if (isset($result->tracking_history)) {
47
+		foreach ($result->tracking_history as $history) {
48 48
 		echo "Speed --> ".$history['s']."<br>";
49
+	}
49 50
 		echo "course --> ".$history['d']."<br>";
50 51
 		echo "Timestamp --> ".$history['ts_friendly']."<br>";
51 52
 		echo "Latitude --> ".$history['lt']."<br>";
Please login to merge, or discard this patch.
examples/Tracking/AssetTracking.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
 		if (is_array($value))
29 29
 		{
30 30
 			Route4Me::simplePrint($value);
31
-		}
32
-		else 
31
+		} else 
33 32
 		{
34 33
 			echo "$key => $value <br>";
35 34
 		}
Please login to merge, or discard this patch.
examples/Tracking/GetDeviceTrackingHistoryFromTimeRange.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,7 @@
 block discarded – undo
34 34
 		if (is_array($value))
35 35
 		{
36 36
 			Route4Me::simplePrint($value);
37
-		}
38
-		else 
37
+		} else 
39 38
 		{
40 39
 			echo "$key => $value <br>";
41 40
 		}
Please login to merge, or discard this patch.