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 ( ae3ad2...c1f900 )
by
unknown
05:02
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/GetDeviceTrackingHistoryFromTimeRange.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/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.
src/Route4Me/Member.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 		public $config_key;
65 65
 		public $config_value;
66 66
 		
67
-		public function __construct () {  }
67
+		public function __construct() {  }
68 68
 		
69 69
 		public static function fromArray(array $params) {
70
-			$member= new Member();
71
-	        foreach($params as $key => $value) {
70
+			$member = new Member();
71
+	        foreach ($params as $key => $value) {
72 72
 	            if (property_exists($member, $key)) {
73 73
 	                $member->{$key} = $value;
74 74
 	            }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	            'url'    => self::$apiUrlDevice,
120 120
 	            'method' => 'POST',
121 121
 	            'body'  => array(
122
-					'device_id' => 	isset($body->device_id) ? $body->device_id: null,
122
+					'device_id' => 	isset($body->device_id) ? $body->device_id : null,
123 123
 	                'device_type' => isset($body->device_type) ? $body->device_type : null,
124 124
 	                'format' => isset($body->format) ? $body->format : null
125 125
 				)
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	            'url'    => self::$apiUrl,
135 135
 	            'method' => 'POST',
136 136
 	            'body'  => array(
137
-					'HIDE_ROUTED_ADDRESSES' => 	isset($body->HIDE_ROUTED_ADDRESSES) ? $body->HIDE_ROUTED_ADDRESSES: null,
137
+					'HIDE_ROUTED_ADDRESSES' => 	isset($body->HIDE_ROUTED_ADDRESSES) ? $body->HIDE_ROUTED_ADDRESSES : null,
138 138
 	                'member_phone' => isset($body->member_phone) ? $body->member_phone : null,
139 139
 	                'member_zipcode' => isset($body->member_zipcode) ? $body->member_zipcode : null,
140 140
 	                'route_count' => isset($body->route_count) ? $body->route_count : null,
@@ -160,9 +160,9 @@  discard block
 block discarded – undo
160 160
 	            'url'    => self::$apiUrl,
161 161
 	            'method' => 'PUT',
162 162
 	            'body'  => array(
163
-					'member_id' => 	isset($body->member_id) ? $body->member_id: null,
163
+					'member_id' => 	isset($body->member_id) ? $body->member_id : null,
164 164
 	                'member_phone' => isset($body->member_phone) ? $body->member_phone : null,
165
-	                'HIDE_ROUTED_ADDRESSES' => 	isset($body->HIDE_ROUTED_ADDRESSES) ? $body->HIDE_ROUTED_ADDRESSES: null,
165
+	                'HIDE_ROUTED_ADDRESSES' => 	isset($body->HIDE_ROUTED_ADDRESSES) ? $body->HIDE_ROUTED_ADDRESSES : null,
166 166
 	                'member_zipcode' => isset($body->member_zipcode) ? $body->member_zipcode : null,
167 167
 	                'route_count' => isset($body->route_count) ? $body->route_count : null,
168 168
 	                'member_email' => isset($body->member_email) ? $body->member_email : null,
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 	            'url'    => self::$apiUrl,
188 188
 	            'method' => 'DELETE',
189 189
 	            'body'  => array(
190
-					'member_id' => 	isset($body->member_id) ? $body->member_id: null
190
+					'member_id' => 	isset($body->member_id) ? $body->member_id : null
191 191
 				)
192 192
 
193 193
 			));
@@ -200,14 +200,14 @@  discard block
 block discarded – undo
200 200
 	            'url'    => self::$apiUrlRegistr,
201 201
 	            'method' => 'POST',
202 202
 	            'body'  => array(
203
-					'strEmail' => 	isset($body->strEmail) ? $body->strEmail: null,
203
+					'strEmail' => 	isset($body->strEmail) ? $body->strEmail : null,
204 204
 	                'strPassword_1' => isset($body->strPassword_1) ? $body->strPassword_1 : null,
205 205
 	                'strPassword_2' => isset($body->strPassword_2) ? $body->strPassword_2 : null,
206
-	                'strFirstName' => 	isset($body->strFirstName) ? $body->strFirstName: null,
207
-	                'strLastName' => 	isset($body->strLastName) ? $body->strLastName: null,
208
-	                'strIndustry' => 	isset($body->strIndustry) ? $body->strIndustry: null,
209
-	                'chkTerms' => 	isset($body->chkTerms) ? $body->chkTerms: null,
210
-	                'plan' => 	isset($body->plan) ? $body->plan: null
206
+	                'strFirstName' => 	isset($body->strFirstName) ? $body->strFirstName : null,
207
+	                'strLastName' => 	isset($body->strLastName) ? $body->strLastName : null,
208
+	                'strIndustry' => 	isset($body->strIndustry) ? $body->strIndustry : null,
209
+	                'chkTerms' => 	isset($body->chkTerms) ? $body->chkTerms : null,
210
+	                'plan' => 	isset($body->plan) ? $body->plan : null
211 211
 				)
212 212
 			));
213 213
 			return $response;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	            'url'    => self::$apiUrlSessValid,
220 220
 	            'method' => 'GET',
221 221
 	            'query'  => array(
222
-					'session_guid' => 	isset($params->session_guid) ? $params->session_guid: null,
222
+					'session_guid' => 	isset($params->session_guid) ? $params->session_guid : null,
223 223
 	                'member_id' => isset($params->member_id) ? $params->member_id : null,
224 224
 	                'format' => isset($params->format) ? $params->format : null
225 225
 				)
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	            'url'    => self::$apiUrlAuthen,
234 234
 	            'method' => 'POST',
235 235
 	            'body'  => array(
236
-					'strEmail' => 	isset($body->strEmail) ? $body->strEmail: null,
236
+					'strEmail' => 	isset($body->strEmail) ? $body->strEmail : null,
237 237
 	                'strPassword' => isset($body->strPassword) ? $body->strPassword : null,
238 238
 	                'format' => isset($body->format) ? $body->format : null
239 239
 				)
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 	            'url'    => self::$apiUrlWebinar,
249 249
 	            'method' => 'POST',
250 250
 	            'body'  => array(
251
-					'email_address' => 	isset($body->email_address) ? $body->email_address: null,
251
+					'email_address' => 	isset($body->email_address) ? $body->email_address : null,
252 252
 	                'first_name' => isset($body->first_name) ? $body->first_name : null,
253 253
 	                'last_name' => isset($body->last_name) ? $body->last_name : null,
254 254
 	                'phone_number' => isset($body->phone_number) ? $body->phone_number : null,
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 	            'url'    => self::$apiUrlLicense,
268 268
 	            'method' => 'POST',
269 269
 	            'body'  => array(
270
-					'member_id' => 	isset($body->member_id) ? $body->member_id: null,
270
+					'member_id' => 	isset($body->member_id) ? $body->member_id : null,
271 271
 	                'session_guid' => isset($body->session_guid) ? $body->session_guid : null,
272 272
 	                'device_id' => isset($body->device_id) ? $body->device_id : null,
273 273
 	                'device_type' => isset($body->device_type) ? $body->device_type : null,
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 	            'url'    => self::$apiMemberConfig,
288 288
 	            'method' => 'POST',
289 289
 	            'body'  => array(
290
-					'config_key' => 	isset($body->config_key) ? $body->config_key: null,
290
+					'config_key' => 	isset($body->config_key) ? $body->config_key : null,
291 291
 	                'config_value' => isset($body->config_value) ? $body->config_value : null
292 292
 				)
293 293
 			));
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
 	            'url'    => self::$apiMemberConfig,
301 301
 	            'method' => 'DELETE',
302 302
 	            'body'  => array(
303
-					'config_key' => 	isset($body->config_key) ? $body->config_key: null
303
+					'config_key' => 	isset($body->config_key) ? $body->config_key : null
304 304
 				)
305 305
 			));
306 306
 			return $response;
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 	            'url'    => self::$apiMemberConfig,
313 313
 	            'method' => 'GET',
314 314
 	            'query'  => array(
315
-					'config_key' => 	isset($body->config_key) ? $body->config_key: null
315
+					'config_key' => 	isset($body->config_key) ? $body->config_key : null
316 316
 				)
317 317
 			));
318 318
 			return $response;
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 	            'url'    => self::$apiMemberConfig,
325 325
 	            'method' => 'PUT',
326 326
 	            'body'  => array(
327
-					'config_key' => 	isset($body->config_key) ? $body->config_key: null,
327
+					'config_key' => 	isset($body->config_key) ? $body->config_key : null,
328 328
 	                'config_value' => isset($body->config_value) ? $body->config_value : null
329 329
 				)
330 330
 			));
Please login to merge, or discard this patch.