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 ( b54c2e...66b33a )
by Oleg
01:58
created
examples/MemberConfiguration/create_new_config_key.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $params = Member::fromArray(array (
16
-    "config_key"   => "destination_icon_uri",
17
-    "config_value" => "value"
16
+	"config_key"   => "destination_icon_uri",
17
+	"config_value" => "value"
18 18
 ));
19 19
 
20 20
 $member = new Member();
Please login to merge, or discard this patch.
examples/MemberConfiguration/get_account_config_key_data.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,13 +19,13 @@
 block discarded – undo
19 19
 $response = $member->getMemberConfigData($params);
20 20
 
21 21
 foreach ($response as $key => $value) {
22
-    if (is_array($value)) {
23
-        foreach ($value as $v1) {
24
-            Route4Me::simplePrint($v1);
25
-            echo "<br>";
26
-        }
27
-    } else {
28
-        echo "$key => $value <br>";
29
-    }
30
-    echo "<br>";
22
+	if (is_array($value)) {
23
+		foreach ($value as $v1) {
24
+			Route4Me::simplePrint($v1);
25
+			echo "<br>";
26
+		}
27
+	} else {
28
+		echo "$key => $value <br>";
29
+	}
30
+	echo "<br>";
31 31
 }
Please login to merge, or discard this patch.
examples/MemberConfiguration/update_config_key.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
 
35 35
 // Update existing configuration key data
36 36
 $params = Member::fromArray(array (
37
-    "config_key"   => $randomKey,
38
-    "config_value" => $randomValue." Updated"
37
+	"config_key"   => $randomKey,
38
+	"config_value" => $randomValue." Updated"
39 39
 ));
40 40
 
41 41
 $response = $member->updateMemberConfigKey($params);
Please login to merge, or discard this patch.
examples/MemberConfiguration/get_specific_account_config_key_data.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,15 +32,15 @@
 block discarded – undo
32 32
 echo "randomKey -> $randomKey <br><br>";
33 33
 
34 34
 $params = Member::fromArray(array (
35
-    "config_key"  => $randomKey
35
+	"config_key"  => $randomKey
36 36
 ));
37 37
 
38 38
 $response = $member->getMemberConfigData($params);
39 39
 
40 40
 foreach ($response as $key => $value) {
41
-    if (is_array($value)) {
42
-        Route4Me::simplePrint($value);
43
-    } else {
44
-        echo "$key => $value <br>";
45
-    }
41
+	if (is_array($value)) {
42
+		Route4Me::simplePrint($value);
43
+	} else {
44
+		echo "$key => $value <br>";
45
+	}
46 46
 }
Please login to merge, or discard this patch.
examples/AddressBook/GetAddressBookLocation.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 // Get reandom address book location
15 15
 $AdressBookLocationParameters = array(
16
-        "limit"   => 30,
17
-        "offset"  => 0
16
+		"limit"   => 30,
17
+		"offset"  => 0
18 18
 );
19 19
 
20 20
 $randomLocation = $abLocation->getRandomAddressBookLocation($AdressBookLocationParameters);
Please login to merge, or discard this patch.
examples/AddressBook/RemoveAddressBookLocations.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16 16
 $AdressBookLocationParameters = AddressBookLocation::fromArray(array(
17
-    "first_name"  => "Test FirstName ".strval(rand(10000, 99999)),
18
-    "address_1"   => "Test Address1 ".strval(rand(10000, 99999)),
19
-    "cached_lat"  => 38.024654,
20
-    "cached_lng"  => -77.338814
17
+	"first_name"  => "Test FirstName ".strval(rand(10000, 99999)),
18
+	"address_1"   => "Test Address1 ".strval(rand(10000, 99999)),
19
+	"cached_lat"  => 38.024654,
20
+	"cached_lng"  => -77.338814
21 21
 ));
22 22
 
23 23
 $abContacts = new AddressBookLocation();
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 $address_id = -1;
28 28
 
29 29
 if (isset($createdContact['address_id'])) {
30
-    $address_id = $createdContact["address_id"];
30
+	$address_id = $createdContact["address_id"];
31 31
 }
32 32
 
33 33
 assert($address_id!=-1, "Creating of Address Book Location was failed. Try again!.. <br>");
Please login to merge, or discard this patch.
examples/Routes/MergeRoutes.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
 $count = 0; 
26 26
 
27 27
 while ($route_id1==$route_id2) {
28
-    $route_id2 = $route->getRandomRouteId(0, 20);
28
+	$route_id2 = $route->getRandomRouteId(0, 20);
29 29
     
30
-    $count++;
30
+	$count++;
31 31
     
32
-    if ($count>5) break; // prevent from the infinite cycle, if there are less than 2 routes.
32
+	if ($count>5) break; // prevent from the infinite cycle, if there are less than 2 routes.
33 33
 }
34 34
 
35 35
 echo "Route ID 1 -> $route_id1 <br> Route ID 2 -> $route_id2 <br>";
@@ -41,21 +41,21 @@  discard block
 block discarded – undo
41 41
 $depot = null;
42 42
 
43 43
 foreach ($addresses as $address) {
44
-    if (isset($address->is_depot)) {
45
-        if ($address->is_depot==true) {
46
-            $depot = $address;
47
-            break;
48
-        }
49
-    }
44
+	if (isset($address->is_depot)) {
45
+		if ($address->is_depot==true) {
46
+			$depot = $address;
47
+			break;
48
+		}
49
+	}
50 50
 }
51 51
 
52 52
 // Merge the selected routes
53 53
 $params = array(
54
-    "route_ids"      => $route_id1.",".$route_id2,
55
-    "depot_address"  =>  $depot->address,
56
-    "remove_origin"  =>  false,
57
-    "depot_lat"      =>  $depot->lat,
58
-    "depot_lat"      =>  $depot->lng
54
+	"route_ids"      => $route_id1.",".$route_id2,
55
+	"depot_address"  =>  $depot->address,
56
+	"remove_origin"  =>  false,
57
+	"depot_lat"      =>  $depot->lat,
58
+	"depot_lat"      =>  $depot->lng
59 59
 );
60 60
 
61 61
 $result = $route->mergeRoutes($params);
Please login to merge, or discard this patch.
examples/Routes/SearchRoute.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 // The example refers to the process of searching for the specified text throughout all routes, belonging to the user's account.
14 14
 
15 15
 $RouteParameters = array(
16
-    "query"   => 'Automated'
16
+	"query"   => 'Automated'
17 17
 );
18 18
 
19 19
 $route = new Route();
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
 
23 23
 foreach ($routeResults as $routeResult)
24 24
 {
25
-    $results = (array)$routeResult;
25
+	$results = (array)$routeResult;
26 26
     
27
-    if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>";
27
+	if (isset($results['route_id'])) echo "Route ID - > " . $results['route_id'] . "<br>";
28 28
     
29
-    if (isset($results['parameters']->route_name)) echo "Route name - > ".$results['parameters']->route_name."<br>";
29
+	if (isset($results['parameters']->route_name)) echo "Route name - > ".$results['parameters']->route_name."<br>";
30 30
 
31
-    echo "<br>";
31
+	echo "<br>";
32 32
 }
Please login to merge, or discard this patch.
examples/Territories/DeleteTerritory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@
 block discarded – undo
18 18
 
19 19
 $territoryParams['type'] = TerritoryTypes::CIRCLE;
20 20
 $territoryParams['data'] = array(
21
-    "37.569752822786455,-77.47833251953125",
22
-    "5000"
21
+	"37.569752822786455,-77.47833251953125",
22
+	"5000"
23 23
 );
24 24
 
25 25
 $TerritoryParameters = Territory::fromArray(array(
26
-    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
-    "territory_color"  => "ff7700",
28
-    "territory"        => $territoryParams
26
+	"territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
+	"territory_color"  => "ff7700",
28
+	"territory"        => $territoryParams
29 29
 ));
30 30
 
31 31
 $territory = new Territory();
Please login to merge, or discard this patch.