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 ( ba89cf...799599 )
by Oleg
02:27
created
examples/Routes/GetRoutePathPoints.php 3 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -23,22 +23,22 @@
 block discarded – undo
23 23
 
24 24
 // Get a route with the path points
25 25
 $params = array(
26
-    "route_path_output" => "Points"
26
+	"route_path_output" => "Points"
27 27
 );
28 28
 
29 29
 $routeResults = (array)$route->getRoutePoints($route_id,$params);
30 30
 
31 31
 if (isset($routeResults['addresses'])) {
32
-    foreach ($routeResults['addresses'] as $key => $address) {
33
-        $araddress = (array)$address;
32
+	foreach ($routeResults['addresses'] as $key => $address) {
33
+		$araddress = (array)$address;
34 34
 
35
-        if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
35
+		if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
36 36
         
37
-        if (isset($araddress['path_to_next'])) {
38
-            echo "path_to_next:<br>";
39
-            Route4Me::simplePrint($araddress['path_to_next']);
40
-        }
37
+		if (isset($araddress['path_to_next'])) {
38
+			echo "path_to_next:<br>";
39
+			Route4Me::simplePrint($araddress['path_to_next']);
40
+		}
41 41
         
42
-        echo "<br>";
43
-    }
42
+		echo "<br>";
43
+	}
44 44
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     "route_path_output" => "Points"
27 27
 );
28 28
 
29
-$routeResults = (array)$route->getRoutePoints($route_id,$params);
29
+$routeResults = (array)$route->getRoutePoints($route_id, $params);
30 30
 
31 31
 if (isset($routeResults['addresses'])) {
32 32
     foreach ($routeResults['addresses'] as $key => $address) {
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,9 @@
 block discarded – undo
32 32
     foreach ($routeResults['addresses'] as $key => $address) {
33 33
         $araddress = (array)$address;
34 34
 
35
-        if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
35
+        if (isset($araddress['route_destination_id'])) {
36
+        	echo "route_destination_id=".$araddress['route_destination_id']."<br>";
37
+        }
36 38
         
37 39
         if (isset($araddress['path_to_next'])) {
38 40
             echo "path_to_next:<br>";
Please login to merge, or discard this patch.
examples/Routes/SearchRoute.php 3 patches
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.
Spacing   +4 added lines, -4 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -18,15 +18,15 @@  discard block
 block discarded – undo
18 18
 
19 19
 $route = new Route();
20 20
 
21
-$routeResults = $route->getRoutes(null,$RouteParameters);
21
+$routeResults = $route->getRoutes(null, $RouteParameters);
22 22
 
23 23
 foreach ($routeResults as $routeResult)
24 24
 {
25 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 31
     echo "<br>";
32 32
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,9 +24,13 @@
 block discarded – undo
24 24
 {
25 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'])) {
28
+    	echo "Route ID - > " . $results['route_id'] . "<br>";
29
+    }
28 30
     
29
-    if (isset($results['parameters']->route_name)) echo "Route name - > " . $results['parameters']->route_name . "<br>";
31
+    if (isset($results['parameters']->route_name)) {
32
+    	echo "Route name - > " . $results['parameters']->route_name . "<br>";
33
+    }
30 34
 
31 35
     echo "<br>";
32 36
 }
Please login to merge, or discard this patch.
examples/Routes/ResequenceRoute.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
 
19 19
 // Select a route with more than 4 addresses.
20 20
 $routesParams = array(
21
-    "offset"  =>  0,
22
-    "limit"   =>  20
21
+	"offset"  =>  0,
22
+	"limit"   =>  20
23 23
 );
24 24
 
25 25
 $routes = $route->getRoutes(null,$routesParams);
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
 $selectedRoute = null;
28 28
 
29 29
 foreach ($routes as $route1) {
30
-    if (isset($route1->destination_count)) {
31
-        if ($route1->destination_count>4) {
32
-            $selectedRoute = $route->getRoutes($route1->route_id);
33
-            break;
34
-        }
35
-    }
30
+	if (isset($route1->destination_count)) {
31
+		if ($route1->destination_count>4) {
32
+			$selectedRoute = $route->getRoutes($route1->route_id);
33
+			break;
34
+		}
35
+	}
36 36
 }
37 37
 
38 38
 assert(!is_null($selectedRoute), "Can't select a route with more than 4 addresses");
@@ -44,19 +44,19 @@  discard block
 block discarded – undo
44 44
 echo "Route ID-> $routeID, Route destination ID -> $routeDestinationID <br>"; 
45 45
 
46 46
 $params = array(
47
-    "route_id"              => $routeID,
48
-    "route_destination_id"  => $routeDestinationID,
49
-    "addresses"  => array(
50
-        "0" => array(
51
-            "route_destination_id"  => $routeDestinationID,
52
-            "sequence_no"           => 3
53
-        )
54
-    )
47
+	"route_id"              => $routeID,
48
+	"route_destination_id"  => $routeDestinationID,
49
+	"addresses"  => array(
50
+		"0" => array(
51
+			"route_destination_id"  => $routeDestinationID,
52
+			"sequence_no"           => 3
53
+		)
54
+	)
55 55
 );
56 56
 
57 57
 $response = $route->resequenceRoute($params);
58 58
 
59 59
 foreach ($response['addresses'] as $address) {
60
-    Route4Me::simplePrint($address);
61
-    echo "<br>";
60
+	Route4Me::simplePrint($address);
61
+	echo "<br>";
62 62
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     "limit"   =>  20
23 23
 );
24 24
 
25
-$routes = $route->getRoutes(null,$routesParams);
25
+$routes = $route->getRoutes(null, $routesParams);
26 26
 
27 27
 $selectedRoute = null;
28 28
 
Please login to merge, or discard this patch.
examples/Routes/ShareRoute.php 2 patches
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.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 // Set the api key in the Route4Me class
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16
-$route=new Route();
16
+$route = new Route();
17 17
 
18 18
 // Get a random route ID
19 19
 $route_id = $route->getRandomRouteId(0, 10);
Please login to merge, or discard this patch.
examples/Routes/UpdateRouteParameters.php 2 patches
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.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     "member_id"           => $randomRoute->member_id,
34 34
     "optimize"            => "Distance",
35 35
     "route_max_duration"  => "82400",
36
-    "route_name"          => "updated " . date('m-d-Y')
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/Routes/GetRoutePathPointsCompressed.php 3 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -23,23 +23,23 @@
 block discarded – undo
23 23
 
24 24
 // Get a route with the path points
25 25
 $params = array(
26
-    "route_path_output"     => "Points",
27
-    "compress_path_points"  => TRUE
26
+	"route_path_output"     => "Points",
27
+	"compress_path_points"  => TRUE
28 28
 );
29 29
 
30 30
 $routeResults = (array)$route->getRoutePoints($route_id,$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'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
36
+		if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
37 37
         
38
-        if (isset($araddress['path_to_next'])) {
39
-            echo "path_to_next:<br>";
40
-            Route4Me::simplePrint((array)$araddress['path_to_next']);
41
-        }
38
+		if (isset($araddress['path_to_next'])) {
39
+			echo "path_to_next:<br>";
40
+			Route4Me::simplePrint((array)$araddress['path_to_next']);
41
+		}
42 42
         
43
-        echo "<br>";
44
-    }
43
+		echo "<br>";
44
+	}
45 45
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     "compress_path_points"  => TRUE
28 28
 );
29 29
 
30
-$routeResults = (array)$route->getRoutePoints($route_id,$params);
30
+$routeResults = (array)$route->getRoutePoints($route_id, $params);
31 31
 
32 32
 if (isset($routeResults['addresses'])) {
33 33
     foreach ($routeResults['addresses'] as $key => $address) {
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,9 @@
 block discarded – undo
32 32
     foreach ($routeResults['addresses'] as $key => $address) {
33 33
         $araddress = (array)$address;
34 34
 
35
-        if (isset($araddress['route_destination_id'])) echo "route_destination_id=".$araddress['route_destination_id']."<br>";
35
+        if (isset($araddress['route_destination_id'])) {
36
+        	echo "route_destination_id=".$araddress['route_destination_id']."<br>";
37
+        }
36 38
         
37 39
         if (isset($araddress['path_to_next'])) {
38 40
             echo "path_to_next:<br>";
Please login to merge, or discard this patch.
examples/Territories/GetTerritoryWithAddresses.php 2 patches
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.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 // Set the api key in the Route4Me class
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16
-$territory=new Territory();
16
+$territory = new Territory();
17 17
 
18 18
 // Select a terriotry with the addresses from the list
19 19
 $params = array(
Please login to merge, or discard this patch.
examples/Territories/GetTerritories.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
 $territory = new Territory();
14 14
 
15 15
 $queryparameters = array (
16
-    "offset" => 0,
17
-    "limit"  => 20
16
+	"offset" => 0,
17
+	"limit"  => 20
18 18
 );
19 19
 
20 20
 $response = $territory->getTerritories($queryparameters);
21 21
 
22 22
 foreach ($response as $terr1) {
23 23
 	Route4Me::simplePrint($terr1, true);
24
-    echo "<br>";
24
+	echo "<br>";
25 25
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 $territory = new Territory();
14 14
 
15
-$queryparameters = array (
15
+$queryparameters = array(
16 16
     "offset" => 0,
17 17
     "limit"  => 20
18 18
 );
Please login to merge, or discard this patch.
examples/multiple_depot_with_time_window.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -26,23 +26,23 @@  discard block
 block discarded – undo
26 26
 
27 27
 $addresses = array();
28 28
 foreach($json as $address) {
29
-    $addresses[] = Address::fromArray($address);
29
+	$addresses[] = Address::fromArray($address);
30 30
 }
31 31
 
32 32
 $parameters = RouteParameters::fromArray(array(
33
-    "algorithm_type"          => Algorithmtype::CVRP_TW_SD,
34
-    "route_name"              => "Multiple Depot, Multiple Driver, Time Window",
35
-    "route_date"              => time() + 24*60*60,
36
-    "route_time"              => 60 * 60 * 7,
37
-    "rt"                      => TRUE,
38
-    "distance_unit"           => DistanceUnit::MILES,
39
-    "device_type"             => DeviceType::WEB,
40
-    "optimize"                => OptimizationType::TIME,
41
-    "metric"                  => Metric::GEODESIC,
42
-    "route_max_duration"      => 86400 * 3,
43
-    "travel_mode"             => TravelMode::DRIVING,
44
-    "vehicle_capacity"        => 99,
45
-    "vehicle_max_distance_mi" => 99999
33
+	"algorithm_type"          => Algorithmtype::CVRP_TW_SD,
34
+	"route_name"              => "Multiple Depot, Multiple Driver, Time Window",
35
+	"route_date"              => time() + 24*60*60,
36
+	"route_time"              => 60 * 60 * 7,
37
+	"rt"                      => TRUE,
38
+	"distance_unit"           => DistanceUnit::MILES,
39
+	"device_type"             => DeviceType::WEB,
40
+	"optimize"                => OptimizationType::TIME,
41
+	"metric"                  => Metric::GEODESIC,
42
+	"route_max_duration"      => 86400 * 3,
43
+	"travel_mode"             => TravelMode::DRIVING,
44
+	"vehicle_capacity"        => 99,
45
+	"vehicle_max_distance_mi" => 99999
46 46
 ));
47 47
 
48 48
 $optimizationParams = new OptimizationProblemParams;
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
 $problem = OptimizationProblem::optimize($optimizationParams);
53 53
 
54 54
 foreach ((array)$problem as $key => $value) {
55
-    if (is_string($value)) {
56
-        echo $key." --> ".$value."<br>";
57
-    } else {
58
-        echo "************ $key ************* <br>";
59
-        Route4Me::simplePrint((array)$value, true);
60
-        echo "******************************* <br>";
61
-    }
55
+	if (is_string($value)) {
56
+		echo $key." --> ".$value."<br>";
57
+	} else {
58
+		echo "************ $key ************* <br>";
59
+		Route4Me::simplePrint((array)$value, true);
60
+		echo "******************************* <br>";
61
+	}
62 62
 }
63 63
 
Please login to merge, or discard this 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
-$root=realpath(dirname(__FILE__).'/../');
4
+$root = realpath(dirname(__FILE__).'/../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
 $json = json_decode(file_get_contents('./addresses.json'), true);
26 26
 
27 27
 $addresses = array();
28
-foreach($json as $address) {
28
+foreach ($json as $address) {
29 29
     $addresses[] = Address::fromArray($address);
30 30
 }
31 31
 
32 32
 $parameters = RouteParameters::fromArray(array(
33 33
     "algorithm_type"          => Algorithmtype::CVRP_TW_SD,
34 34
     "route_name"              => "Multiple Depot, Multiple Driver, Time Window",
35
-    "route_date"              => time() + 24*60*60,
35
+    "route_date"              => time() + 24 * 60 * 60,
36 36
     "route_time"              => 60 * 60 * 7,
37 37
     "rt"                      => TRUE,
38 38
     "distance_unit"           => DistanceUnit::MILES,
Please login to merge, or discard this patch.