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 ( 55318a...b54c2e )
by Oleg
02:27
created
examples/Routes/UpdateRouteDestination.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -31,38 +31,38 @@
 block discarded – undo
31 31
 $route->parameters = new \stdClass();
32 32
 
33 33
 $route->addresses = array( Address::fromArray(array(
34
-    "alias"                   =>  "new address alias",
35
-    "first_name"              =>  "Edi",
36
-    "last_name"               =>  "Jacobson",
37
-    "address"                 =>  "230 Arbor Way Milledgeville GA 31061",
38
-    "is_depot"                =>  false,
39
-    "lat"                     =>  33.129695892334,
40
-    "lng"                     =>  -83.24577331543,
41
-    "sequence_no"             =>  9,
42
-    "is_visited"              =>  true,
43
-    "is_departed"             =>  false,
44
-    "timestamp_last_visited"  =>  36000,
45
-    "timestamp_last_departed" =>  null,
46
-    "customer_po"             =>  "po_131324566",
47
-    "invoice_no"              =>  "in549874",
48
-    "reference_no"            =>  "7988544",
49
-    "order_no"                =>  "on654754",
50
-    "order_id"                =>  4564,
51
-    "weight"                  =>  45,
52
-    "cost"                    =>  55.60,
53
-    "revenue"                 =>  75.80,
54
-    "cube"                    =>  3,
55
-    "pieces"                  =>  30,
56
-    "email"                   =>  "[email protected]",
57
-    "phone"                   =>  "111-222-333",
58
-    "time_window_start"       =>  36600,
59
-    "time_window_end"         =>  37200,
60
-    "time"                    =>  600,
61
-    "priority"                =>  1,
62
-    "curbside_lat"            =>  33.129695892334,
63
-    "curbside_lng"            =>  -83.24577331543,
64
-    "time_window_start_2"     =>  39400,
65
-    "time_window_end_2"       =>  40000
34
+	"alias"                   =>  "new address alias",
35
+	"first_name"              =>  "Edi",
36
+	"last_name"               =>  "Jacobson",
37
+	"address"                 =>  "230 Arbor Way Milledgeville GA 31061",
38
+	"is_depot"                =>  false,
39
+	"lat"                     =>  33.129695892334,
40
+	"lng"                     =>  -83.24577331543,
41
+	"sequence_no"             =>  9,
42
+	"is_visited"              =>  true,
43
+	"is_departed"             =>  false,
44
+	"timestamp_last_visited"  =>  36000,
45
+	"timestamp_last_departed" =>  null,
46
+	"customer_po"             =>  "po_131324566",
47
+	"invoice_no"              =>  "in549874",
48
+	"reference_no"            =>  "7988544",
49
+	"order_no"                =>  "on654754",
50
+	"order_id"                =>  4564,
51
+	"weight"                  =>  45,
52
+	"cost"                    =>  55.60,
53
+	"revenue"                 =>  75.80,
54
+	"cube"                    =>  3,
55
+	"pieces"                  =>  30,
56
+	"email"                   =>  "[email protected]",
57
+	"phone"                   =>  "111-222-333",
58
+	"time_window_start"       =>  36600,
59
+	"time_window_end"         =>  37200,
60
+	"time"                    =>  600,
61
+	"priority"                =>  1,
62
+	"curbside_lat"            =>  33.129695892334,
63
+	"curbside_lng"            =>  -83.24577331543,
64
+	"time_window_start_2"     =>  39400,
65
+	"time_window_end_2"       =>  40000
66 66
 )));
67 67
 
68 68
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Routes/RecomputeRouteDirections.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 $route->parameters = new \stdClass();
31 31
 
32 32
 $route->parameters = array( 
33
-    "recompute_directions" => 1
33
+	"recompute_directions" => 1
34 34
 );
35 35
 
36 36
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Routes/ResequenceAllAddresses.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
 
22 22
 // Resequence all addresses
23 23
 $params = array(
24
-    "route_id"              => $route_id,
25
-    "disable_optimization"  => 0,
26
-    "optimize"              => "Distance"
24
+	"route_id"              => $route_id,
25
+	"disable_optimization"  => 0,
26
+	"optimize"              => "Distance"
27 27
 );
28 28
 
29 29
 $resequence = $route->resequenceAllAddresses($params);
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/GetRoutes.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 Route4Me::setApiKey('11111111111111111111111111111111');
12 12
 
13 13
 $RouteParameters = array(
14
-    "limit"   => 30,
15
-    "offset"  => 0
14
+	"limit"   => 30,
15
+	"offset"  => 0
16 16
 );
17 17
 
18 18
 $route = new Route();
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
 foreach ($routeResults as $routeResult)
23 23
 {
24
-    $results = (array)$routeResult;
24
+	$results = (array)$routeResult;
25 25
 
26
-    Route4Me::simplePrint($results);
26
+	Route4Me::simplePrint($results);
27 27
     
28
-    echo "<br>";
28
+	echo "<br>";
29 29
 }
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/Routes/ShareRoute.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
 
22 22
 // Share a route with an email
23 23
 $params = array(
24
-    "route_id"         => $route_id,
25
-    "response_format"  => "json",
26
-    "recipient_email"  => "[email protected]"
24
+	"route_id"         => $route_id,
25
+	"response_format"  => "json",
26
+	"recipient_email"  => "[email protected]"
27 27
 );
28 28
 
29 29
 $result = $route->shareRoute($params);
Please login to merge, or discard this patch.
examples/Routes/UpdateRouteParameters.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
 $route->parameters = new \stdClass();
31 31
 
32 32
 $route->parameters = array(
33
-    "member_id"           => $randomRoute->member_id,
34
-    "optimize"            => "Distance",
35
-    "route_max_duration"  => "82400",
36
-    "route_name"          => "updated " . date('m-d-Y')
33
+	"member_id"           => $randomRoute->member_id,
34
+	"optimize"            => "Distance",
35
+	"route_max_duration"  => "82400",
36
+	"route_name"          => "updated " . date('m-d-Y')
37 37
 );
38 38
 
39 39
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Territories/GetTerritoryWithAddresses.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@  discard block
 block discarded – undo
17 17
 
18 18
 // Select a terriotry with the addresses from the list
19 19
 $params = array(
20
-    "offset"    => 0,
21
-    "limit"     => 50,
22
-    "addresses" => 1
20
+	"offset"    => 0,
21
+	"limit"     => 50,
22
+	"addresses" => 1
23 23
 );
24 24
 
25 25
 $results = $territory->getTerritories($params);
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
 $territory1 = null;
29 29
 
30 30
 foreach ($results as $terr) {
31
-    if (isset($terr['addresses'])) {
32
-        if (sizeof($terr['addresses'])>0) {
33
-            $territory1 = $terr;
34
-            break;
35
-        }
36
-    }	
31
+	if (isset($terr['addresses'])) {
32
+		if (sizeof($terr['addresses'])>0) {
33
+			$territory1 = $terr;
34
+			break;
35
+		}
36
+	}	
37 37
 }
38 38
 
39 39
 assert(isset($territory1['territory_id']), "Can't retrieve a random territory ID");
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 
44 44
 // Get a territory with the addresses
45 45
 $params = array(
46
-    "territory_id" => $territory_id,
47
-    "addresses"    => 1
46
+	"territory_id" => $territory_id,
47
+	"addresses"    => 1
48 48
 );
49 49
 
50 50
 $result1 = $territory->getTerritory($params);
Please login to merge, or discard this patch.