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 ( 386c7e...6cd0a7 )
by Oleg
05:41 queued 47s
created
examples/Addresses/AddDestinationToOptimization.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
 	
15 15
 	// Get random route from test routes
16 16
 	//--------------------------------------------------------
17
-	$route=new Route();
17
+	$route = new Route();
18 18
 	
19
-	$route_id=$route->getRandomRouteId(0, 10);
19
+	$route_id = $route->getRandomRouteId(0, 10);
20 20
 	
21 21
 	if (is_null($route_id)) {
22 22
 		echo "can't retrieve random route_id!.. Try again.";
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 	
27 27
 	// Get random address's id from selected route above
28 28
 	//--------------------------------------------------------
29
-	$addressRand=(array)$route->GetRandomAddressFromRoute($route_id);
30
-	$optimization_problem_id=$addressRand['optimization_problem_id'];
29
+	$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
30
+	$optimization_problem_id = $addressRand['optimization_problem_id'];
31 31
 	
32 32
 	if (is_null($optimization_problem_id)) {
33 33
 		echo "can't retrieve random address!.. Try again.";
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	}
36 36
 	//--------------------------------------------------------
37 37
 	
38
-	$addresses=array();
38
+	$addresses = array();
39 39
 	
40
-	$address1=(array)Address::fromArray(array(
40
+	$address1 = (array)Address::fromArray(array(
41 41
 		'address' 	=>	'717 5th Ave New York, NY 10021',
42 42
 		'alias'		=>	'Giorgio Armani',
43 43
 		'lat'		=>	40.7669692,
@@ -45,17 +45,17 @@  discard block
 block discarded – undo
45 45
 		'time'		=>	0
46 46
 	));
47 47
 
48
-	$addresses[0]=$address1;
48
+	$addresses[0] = $address1;
49 49
 	
50
-	$OptimizationParameters=(array)OptimizationProblem::fromArray(array(
50
+	$OptimizationParameters = (array)OptimizationProblem::fromArray(array(
51 51
 		"optimization_problem_id"	=> $optimization_problem_id,
52 52
 		"addresses"		=> $addresses,
53 53
 		"reoptimize"	=> 1,
54 54
 	));
55 55
 	
56
-	$optimizationproblem=new OptimizationProblem();
56
+	$optimizationproblem = new OptimizationProblem();
57 57
 	
58
-	$result=$optimizationproblem->update($OptimizationParameters);
58
+	$result = $optimizationproblem->update($OptimizationParameters);
59 59
 	
60 60
 	Route4Me::simplePrint($result);
61 61
 ?>
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Addresses/insert_address_into_route_optimal_position.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
 	
16 16
 	// Get random route from test routes
17 17
 	//--------------------------------------------------------
18
-	$route=new Route();
18
+	$route = new Route();
19 19
 	
20
-	$route_id=$route->getRandomRouteId(0, 10);
20
+	$route_id = $route->getRandomRouteId(0, 10);
21 21
 	
22 22
 	if (is_null($route_id)) {
23 23
 		echo "can't retrieve random route_id!.. Try again.";
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 	}
26 26
 	//--------------------------------------------------------
27 27
 	
28
-	$addresses=array();
28
+	$addresses = array();
29 29
 	
30
-	$params=array(
30
+	$params = array(
31 31
 		"route_id" => "5C15E83A4BE005BCD1537955D28D51D7",
32 32
 		"addresses" => array(
33 33
 			"0" => array(
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
 		"optimal_position" => true
45 45
 	);
46 46
 	
47
-	$route1=new Route();
47
+	$route1 = new Route();
48 48
 	
49
-	$result=$route1->insertAddressOptimalPosition($params);
49
+	$result = $route1->insertAddressOptimalPosition($params);
50 50
 	
51 51
 	Route4Me::simplePrint((array)$result);
52 52
 ?>
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Addresses/RemoveRouteDestination.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
 	
15 15
 	// Get random route from test routes
16 16
 	//--------------------------------------------------------
17
-	$route=new Route();
17
+	$route = new Route();
18 18
 	
19
-	$route_id=$route->getRandomRouteId(0, 10);
19
+	$route_id = $route->getRandomRouteId(0, 10);
20 20
 	
21 21
 	if (is_null($route_id)) {
22 22
 		echo "can't retrieve random route_id!.. Try again.";
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 	
27 27
 	// Get random destination from selected route above
28 28
 	//--------------------------------------------------------
29
-	$addressRand=(array)$route->GetRandomAddressFromRoute($route_id);
30
-	$route_destination_id=$addressRand['route_destination_id'];
29
+	$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
30
+	$route_destination_id = $addressRand['route_destination_id'];
31 31
 	
32 32
 	if (is_null($route_destination_id)) {
33 33
 		echo "can't retrieve random address!.. Try again.";
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
 	echo "route_destination_id = $route_destination_id <br>";
38 38
 	//--------------------------------------------------------
39 39
 	
40
-	$address=new Address();
40
+	$address = new Address();
41 41
 	
42 42
 	$address->route_id = $route_id;
43 43
 	$address->route_destination_id = $route_destination_id;
44
-	$result=$address->delete();
44
+	$result = $address->delete();
45 45
 	
46 46
 	var_dump($result);
47 47
 ?>
48 48
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Addresses/mark_address_as_departed.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 	// Set the api key in the Route4Me class
12 12
 	Route4Me::setApiKey('11111111111111111111111111111111');
13 13
 	
14
-	$address=new Address();
14
+	$address = new Address();
15 15
 	
16 16
 	$params = array(
17 17
 		"route_id"  => "5C15E83A4BE005BCD1537955D28D51D7",
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 		"member_id"  => 1
21 21
 	);
22 22
 	
23
-	$result=$address->markAsDeparted($params);
23
+	$result = $address->markAsDeparted($params);
24 24
 	
25 25
 	var_dump($result); 
26 26
 ?>
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Addresses/GetAddress.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 	
14 14
 	// Get random route from test routes
15 15
 	//--------------------------------------------------------
16
-	$route=new Route();
16
+	$route = new Route();
17 17
 	
18
-	$route_id=$route->getRandomRouteId(0, 10);
18
+	$route_id = $route->getRandomRouteId(0, 10);
19 19
 	
20 20
 	if (is_null($route_id)) {
21 21
 		echo "can't retrieve random route_id!.. Try again.";
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
 	
26 26
 	// Get random address's id from selected route above
27 27
 	//--------------------------------------------------------
28
-	$addressRand=(array)$route->GetRandomAddressFromRoute($route_id);
29
-	$route_destination_id=$addressRand['route_destination_id'];
28
+	$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
29
+	$route_destination_id = $addressRand['route_destination_id'];
30 30
 	
31 31
 	if (is_null($route_destination_id)) {
32 32
 		echo "can't retrieve random address!.. Try again.";
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
 	}
35 35
 	//--------------------------------------------------------
36 36
 	
37
-	$address=new Address();
37
+	$address = new Address();
38 38
 	
39
-	$addressRetrieved=$address->getAddress($route_id, $route_destination_id);
39
+	$addressRetrieved = $address->getAddress($route_id, $route_destination_id);
40 40
 	
41 41
 	Route4Me::simplePrint((array)$addressRetrieved);
42 42
 ?>
43 43
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Tracking/TrackDeviceLastLocationHistory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 		
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 	
6 6
 	require $vdir.'/../vendor/autoload.php';
7 7
 	//require __DIR__.'/../vendor/autoload.php';;
Please login to merge, or discard this patch.
examples/Tracking/AssetTracking.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 		
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 	
6 6
 	require $vdir.'/../vendor/autoload.php';
7 7
 	
Please login to merge, or discard this patch.
examples/Tracking/SetGPSPosition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 	
4
-$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
 require $vdir.'/../vendor/autoload.php';
7 7
 //require __DIR__.'/../vendor/autoload.php';;
Please login to merge, or discard this patch.
examples/SingleDriverMultipleTimeWindows.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@
 block discarded – undo
22 22
 $json = json_decode(file_get_contents('./addresses.json'), true);
23 23
 
24 24
 $addresses = array();
25
-foreach($json as $address) {
25
+foreach ($json as $address) {
26 26
     $addresses[] = Address::fromArray($address);
27 27
 }
28 28
 
29 29
 $parameters = RouteParameters::fromArray(array(
30 30
     "algorithm_type"          => Algorithmtype::TSP,
31 31
     "route_name"			  => "Single Driver Multiple TimeWindows 12 Stops",
32
-    "route_date"			  => time() + 24*60*60,
32
+    "route_date"			  => time() + 24 * 60 * 60,
33 33
     "route_time"			  => 5 * 3600 + 30 * 60,
34 34
     "distance_unit"           => DistanceUnit::MILES,
35 35
     "device_type"             => DeviceType::WEB,
Please login to merge, or discard this patch.