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/Activities/GetRouteTeamActivities.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 assert(!is_null($routeId), "Can't retrieve random route_id");
21 21
 
22 22
 $activityParameters = ActivityParameters::fromArray(array(
23
-    "route_id"   => $routeId,
24
-    "team"       => "true"
23
+	"route_id"   => $routeId,
24
+	"team"       => "true"
25 25
 ));
26 26
 
27 27
 $activities = new ActivityParameters();
@@ -30,5 +30,5 @@  discard block
 block discarded – undo
30 30
 
31 31
 foreach ($results as $result) {
32 32
 	Route4Me::simplePrint($result);
33
-    echo "<br>";
33
+	echo "<br>";
34 34
 }
Please login to merge, or discard this patch.
examples/Addresses/RemoveDestinationFromOptimization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 assert(!is_null($route_destination_id), "Can't retrieve random address");
39 39
 
40 40
 // Remove the destination from the optimization
41
-$params = array (
41
+$params = array(
42 42
     "optimization_problem_id"  => $optimization_problem_id,
43 43
     "route_destination_id"     => $route_destination_id
44 44
 );
Please login to merge, or discard this patch.
examples/Addresses/insert_address_into_route_optimal_position.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,5 +52,5 @@
 block discarded – undo
52 52
 assert(isset($result->addresses), "Can't insert a destination into the route");
53 53
 
54 54
 foreach ($result->addresses as $address) {
55
-	echo "Address -> ".$address->address , ", Sequence number -> ".$address->sequence_no."<br>";
55
+	echo "Address -> ".$address->address, ", Sequence number -> ".$address->sequence_no."<br>";
56 56
 }
Please login to merge, or discard this patch.
examples/Addresses/mark_address_as_departed.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
 $address = new Address();
30 30
 
31 31
 $params = array(
32
-    "route_id"     => $routeId,
33
-    "address_id"   => $route_destination_id,
34
-    "is_departed"  => 1,
35
-    "member_id"    => 1
32
+	"route_id"     => $routeId,
33
+	"address_id"   => $route_destination_id,
34
+	"is_departed"  => 1,
35
+	"member_id"    => 1
36 36
 );
37 37
 
38 38
 $result = $address->markAsDeparted($params);
Please login to merge, or discard this patch.
examples/Addresses/AddRouteDestinations.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@
 block discarded – undo
23 23
 $addresses = array();
24 24
 
25 25
 $address1 = (array)Address::fromArray(array(
26
-    'address'   =>  '146 Bill Johnson Rd NE Milledgeville GA 31061',
27
-    'lat'       =>  33.143526,
28
-    'lng'       =>  -83.240354,
29
-    'time'      =>  0
26
+	'address'   =>  '146 Bill Johnson Rd NE Milledgeville GA 31061',
27
+	'lat'       =>  33.143526,
28
+	'lng'       =>  -83.240354,
29
+	'time'      =>  0
30 30
 ));
31 31
 
32 32
 $address2 = (array)Address::fromArray(array(
33
-    'address'   =>  '222 Blake Cir Milledgeville GA 31061',
34
-    'lat'       =>  33.177852,
35
-    'lng'       =>  -83.263535,
36
-    'time'      =>  0
33
+	'address'   =>  '222 Blake Cir Milledgeville GA 31061',
34
+	'lat'       =>  33.177852,
35
+	'lng'       =>  -83.263535,
36
+	'time'      =>  0
37 37
 ));
38 38
 
39 39
 $addresses[] = $address1; 
40 40
 $addresses[] = $address2;
41 41
 
42 42
 $routeParameters = array(
43
-    "route_id"  =>  $routeId,
44
-    "addresses" => array($address1, $address2)
43
+	"route_id"  =>  $routeId,
44
+	"addresses" => array($address1, $address2)
45 45
 );
46 46
 
47 47
 $route1 = new Route();
Please login to merge, or discard this patch.
examples/Addresses/MoveDestinationToRoute.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 $route = new Route();
17 17
 
18 18
 $grParams = array(
19
-    'offset' => 0,
20
-    'limit'  => 10
19
+	'offset' => 0,
20
+	'limit'  => 10
21 21
 );
22 22
 
23 23
 $routes = $route->getRoutes($grParams);
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 echo "<br> From the route -> ".$route_id0 ."<br>";
33 33
 
34 34
 if (is_null($route_id0)) {
35
-    echo "Can't retrieve random route_id!.. Try again.";
36
-    return;
35
+	echo "Can't retrieve random route_id!.. Try again.";
36
+	return;
37 37
 }
38 38
 
39 39
 // Get random source destination from selected source route above
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
 $to_route_id = $route_id0;
49 49
 
50 50
 while ($to_route_id==$route_id0) {
51
-    $to_route_id = $routes[rand(0, sizeof($routes) - 1)]->route_id;
51
+	$to_route_id = $routes[rand(0, sizeof($routes) - 1)]->route_id;
52 52
 }
53 53
 
54 54
 echo "<br> to the route -> ".$to_route_id ."<br>";
55 55
 
56 56
 if (is_null($to_route_id)) {
57
-    echo "Can't retrieve random route_id!.. Try again.";
58
-    return;
57
+	echo "Can't retrieve random route_id!.. Try again.";
58
+	return;
59 59
 }
60 60
 
61 61
 // Get random destination destination from selected source route above
@@ -64,17 +64,17 @@  discard block
 block discarded – undo
64 64
 $after_destination_id = $addressRand2['route_destination_id'];
65 65
 
66 66
 if (is_null($after_destination_id)) {
67
-    echo "can't retrieve random address!.. Try again.";
68
-    return;
67
+	echo "can't retrieve random address!.. Try again.";
68
+	return;
69 69
 }
70 70
 
71 71
 echo "after_destination_id = $after_destination_id <br>";
72 72
 
73 73
 // Move the destination to the route     
74 74
 $routeparams = array(
75
-    'to_route_id'           =>  $to_route_id,
76
-    'route_destination_id'  =>  strval($route_destination_id),
77
-    'after_destination_id'  =>  strval($after_destination_id)
75
+	'to_route_id'           =>  $to_route_id,
76
+	'route_destination_id'  =>  strval($route_destination_id),
77
+	'after_destination_id'  =>  strval($after_destination_id)
78 78
 );
79 79
 
80 80
 $address = new Address();
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
 // Get random source route from test routes
28 28
 $route = new Route();
29 29
 
30
-$route_id0 = $routes[rand(0, sizeof($routes)-1)]->route_id;
30
+$route_id0 = $routes[rand(0, sizeof($routes) - 1)]->route_id;
31 31
 
32
-echo "<br> From the route -> ".$route_id0 ."<br>";
32
+echo "<br> From the route -> ".$route_id0."<br>";
33 33
 
34 34
 if (is_null($route_id0)) {
35 35
     echo "Can't retrieve random route_id!.. Try again.";
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     $to_route_id = $routes[rand(0, sizeof($routes) - 1)]->route_id;
52 52
 }
53 53
 
54
-echo "<br> to the route -> ".$to_route_id ."<br>";
54
+echo "<br> to the route -> ".$to_route_id."<br>";
55 55
 
56 56
 if (is_null($to_route_id)) {
57 57
     echo "Can't retrieve random route_id!.. Try again.";
Please login to merge, or discard this patch.
examples/Addresses/mark_address_as_visited.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@  discard block
 block discarded – undo
23 23
 $addressRand = (array)$route->GetRandomAddressFromRoute($routeId);
24 24
 
25 25
 if (isset($addressRand['is_depot'])) {
26
-    if ($addressRand['is_depot']) {
27
-        echo "Random choosed address is depot, it can't be marked!.. Try again.";
28
-        return;
29
-    }
26
+	if ($addressRand['is_depot']) {
27
+		echo "Random choosed address is depot, it can't be marked!.. Try again.";
28
+		return;
29
+	}
30 30
 }
31 31
 
32 32
 // Get random address's id from selected route above
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
 $address = new Address();
40 40
 
41 41
 $params = array(
42
-    "route_id"    => $routeId,
43
-    "address_id"  =>  $route_destination_id,
44
-    "is_visited"  => 1,
45
-    "member_id"   => 1
42
+	"route_id"    => $routeId,
43
+	"address_id"  =>  $route_destination_id,
44
+	"is_visited"  => 1,
45
+	"member_id"   => 1
46 46
 );
47 47
 
48 48
 $result = $address->markAsVisited($params);
Please login to merge, or discard this patch.
examples/Tracking/GetDeviceTrackingHistoryFromTimeRange.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -27,16 +27,16 @@  discard block
 block discarded – undo
27 27
 // Set GPS postion to the selected route
28 28
 // Set right member_id corresponding to the API key
29 29
 $params = TrackSetParams::fromArray(array(
30
-    'format'           => Format::SERIALIZED,
31
-    'route_id'         => $routeId,
32
-    'member_id'        => 1,
33
-    'course'           => 1,
34
-    'speed'            => 120,
35
-    'lat'              => 41.8927521,
36
-    'lng'              => -109.0803888,
37
-    'device_type'      => 'android_phone',
38
-    'device_guid'      => 'qweqweqwe',
39
-    'device_timestamp' => date('Y-m-d H:i:s', strtotime('-2 day'))
30
+	'format'           => Format::SERIALIZED,
31
+	'route_id'         => $routeId,
32
+	'member_id'        => 1,
33
+	'course'           => 1,
34
+	'speed'            => 120,
35
+	'lat'              => 41.8927521,
36
+	'lng'              => -109.0803888,
37
+	'device_type'      => 'android_phone',
38
+	'device_guid'      => 'qweqweqwe',
39
+	'device_timestamp' => date('Y-m-d H:i:s', strtotime('-2 day'))
40 40
 ));
41 41
 
42 42
 $status = Track::set($params);
@@ -50,20 +50,20 @@  discard block
 block discarded – undo
50 50
 $endDate = time() + 1*24*3600;
51 51
 
52 52
 $params = array(
53
-    'route_id'     => $routeId,
54
-    'format'       => Format::JSON,
55
-    'time_period'  => 'custom',
56
-    'start_date'   => $startDate,
57
-    'end_date'     => $endDate
53
+	'route_id'     => $routeId,
54
+	'format'       => Format::JSON,
55
+	'time_period'  => 'custom',
56
+	'start_date'   => $startDate,
57
+	'end_date'     => $endDate
58 58
 );
59 59
 
60 60
 $result = $route->GetTrackingHistoryFromTimeRange($params);
61 61
 
62 62
 foreach ($result as $key => $value)
63 63
 {
64
-    if (is_array($value)) {
65
-        Route4Me::simplePrint($value);
66
-    } else {
67
-        echo "$key => $value <br>";
68
-    }
64
+	if (is_array($value)) {
65
+		Route4Me::simplePrint($value);
66
+	} else {
67
+		echo "$key => $value <br>";
68
+	}
69 69
 }
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\Enum\DeviceType;
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 assert($status['status'], "Can't send GPS position to the selected route");
47 47
 
48 48
 // Get the device tracking history from a time range
49
-$startDate = time() - 30*24*3600;
50
-$endDate = time() + 1*24*3600;
49
+$startDate = time() - 30 * 24 * 3600;
50
+$endDate = time() + 1 * 24 * 3600;
51 51
 
52 52
 $params = array(
53 53
     'route_id'     => $routeId,
Please login to merge, or discard this patch.
examples/Tracking/TrackDeviceLastLocationHistory.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -27,16 +27,16 @@  discard block
 block discarded – undo
27 27
 // Set GPS postion to the selected route
28 28
 // Set right member_id corresponding to the API key
29 29
 $params = TrackSetParams::fromArray(array(
30
-    'format'           => Format::SERIALIZED,
31
-    'route_id'         => $routeId,
32
-    'member_id'        => 105323,
33
-    'course'           => 3,
34
-    'speed'            => 100,
35
-    'lat'              => 41.8927521,
36
-    'lng'              => -109.0803888,
37
-    'device_type'      => DeviceType::IPHONE,
38
-    'device_guid'      => 'qweqweqwe',
39
-    'device_timestamp' => date('Y-m-d H:i:s')
30
+	'format'           => Format::SERIALIZED,
31
+	'route_id'         => $routeId,
32
+	'member_id'        => 105323,
33
+	'course'           => 3,
34
+	'speed'            => 100,
35
+	'lat'              => 41.8927521,
36
+	'lng'              => -109.0803888,
37
+	'device_type'      => DeviceType::IPHONE,
38
+	'device_guid'      => 'qweqweqwe',
39
+	'device_timestamp' => date('Y-m-d H:i:s')
40 40
 ));
41 41
 
42 42
 $status = Track::set($params);
@@ -46,23 +46,23 @@  discard block
 block discarded – undo
46 46
 assert($status['status'], "Can't send GPS position to the selected route");
47 47
 
48 48
 if (!$status) {
49
-    echo "Setting of GPS position failed";
50
-    return;
49
+	echo "Setting of GPS position failed";
50
+	return;
51 51
 }
52 52
 
53 53
 $params = array(
54
-    'route_id'                 =>  $routeId,
55
-    'device_tracking_history'  =>  '1'
54
+	'route_id'                 =>  $routeId,
55
+	'device_tracking_history'  =>  '1'
56 56
 );
57 57
 
58 58
 $result = $route->GetLastLocation($params);
59 59
 
60 60
 if (isset($result->tracking_history))
61 61
 foreach ($result->tracking_history as $history) {
62
-    echo "Speed --> ".$history['s']."<br>";
63
-    echo "course --> ".$history['d']."<br>";
64
-    echo "Timestamp --> ".$history['ts_friendly']."<br>";
65
-    echo "Latitude --> ".$history['lt']."<br>";
66
-    echo "Longitude --> ".$history['lg']."<br>";
67
-    echo "========================================<br><br>";
62
+	echo "Speed --> ".$history['s']."<br>";
63
+	echo "course --> ".$history['d']."<br>";
64
+	echo "Timestamp --> ".$history['ts_friendly']."<br>";
65
+	echo "Latitude --> ".$history['lt']."<br>";
66
+	echo "Longitude --> ".$history['lg']."<br>";
67
+	echo "========================================<br><br>";
68 68
 }
Please login to merge, or discard this patch.