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 ( 49fd2d...63bb85 )
by Oleg
02:40 queued 42s
created
examples/Territories/CreateRectangularTerritory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
 
17 17
 $territoryParams['type'] = TerritoryTypes::RECT;
18 18
 $territoryParams['data'] = array(
19
-    "43.51668853502909,-109.3798828125",
20
-    "46.98025235521883,-101.865234375"
19
+	"43.51668853502909,-109.3798828125",
20
+	"46.98025235521883,-101.865234375"
21 21
 );
22 22
 
23 23
 $TerritoryParameters = Territory::fromArray(array(
24
-    "territory_name"   => "Test Rectangular Territory ".strval(rand(10000, 99999)),
25
-    "territory_color"  => "ff7700",
26
-    "territory"        => $territoryParams
24
+	"territory_name"   => "Test Rectangular Territory ".strval(rand(10000, 99999)),
25
+	"territory_color"  => "ff7700",
26
+	"territory"        => $territoryParams
27 27
 ));
28 28
 
29 29
 $territory = new Territory();
Please login to merge, or discard this patch.
examples/Territories/UpdateTerritory.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 
19 19
 $territoryParams['type'] = TerritoryTypes::CIRCLE;
20 20
 $territoryParams['data'] = array(
21
-    "37.569752822786455,-77.47833251953125",
22
-    "5000"
21
+	"37.569752822786455,-77.47833251953125",
22
+	"5000"
23 23
 );
24 24
 
25 25
 $TerritoryParameters = Territory::fromArray(array(
26
-    "territory_name"  => "Test Territory ".strval(rand(10000, 99999)),
27
-    "territory_color" => "ff7700",
28
-    "territory"       => $territoryParams
26
+	"territory_name"  => "Test Territory ".strval(rand(10000, 99999)),
27
+	"territory_color" => "ff7700",
28
+	"territory"       => $territoryParams
29 29
 ));
30 30
 
31 31
 $result = (array)$territory->addTerritory($TerritoryParameters);
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
 
39 39
 // Update territory
40 40
 $territoryParameters = array (
41
-    "type" => TerritoryTypes::RECT,
42
-    "data" => array(
43
-        "29.6600127358956,-95.6593322753906",
44
-        "29.8966150753098,-95.3146362304688"
45
-       )
41
+	"type" => TerritoryTypes::RECT,
42
+	"data" => array(
43
+		"29.6600127358956,-95.6593322753906",
44
+		"29.8966150753098,-95.3146362304688"
45
+	   )
46 46
    );
47 47
 
48 48
 $TerritoryParameters = Territory::fromArray(array(
49
-    "territory_id"     => $territory_id,
50
-    "territory_name"   => "Test Territory Updated as rectangle",
51
-    "territory_color"  => "ff5500",
52
-    "territory"        => $territoryParameters
49
+	"territory_id"     => $territory_id,
50
+	"territory_name"   => "Test Territory Updated as rectangle",
51
+	"territory_color"  => "ff5500",
52
+	"territory"        => $territoryParameters
53 53
 ));
54 54
 
55 55
 $result1 = $territory->updateTerritory($TerritoryParameters);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 echo "---------------------------------------------------------------<br><br>";
38 38
 
39 39
 // Update territory
40
-$territoryParameters = array (
40
+$territoryParameters = array(
41 41
     "type" => TerritoryTypes::RECT,
42 42
     "data" => array(
43 43
         "29.6600127358956,-95.6593322753906",
Please login to merge, or discard this patch.
examples/Territories/CreatePolygonianTerritory.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,21 +16,21 @@
 block discarded – undo
16 16
 
17 17
 $territoryParams['type'] = TerritoryTypes::POLY;
18 18
 $territoryParams['data'] = array(
19
-    "37.769752822786455,-77.67833251953125",
20
-    "37.75886716305343,-77.68974800109863",
21
-    "37.74763966054455,-77.6917221069336",
22
-    "37.74655084306813,-77.68863220214844",
23
-    "37.7502255383101,-77.68125076293945",
24
-    "37.74797991274437,-77.67498512268066",
25
-    "37.73327960206065,-77.6411678314209",
26
-    "37.74430510679532,-77.63172645568848",
27
-    "37.76641925847049,-77.66846199035645"
19
+	"37.769752822786455,-77.67833251953125",
20
+	"37.75886716305343,-77.68974800109863",
21
+	"37.74763966054455,-77.6917221069336",
22
+	"37.74655084306813,-77.68863220214844",
23
+	"37.7502255383101,-77.68125076293945",
24
+	"37.74797991274437,-77.67498512268066",
25
+	"37.73327960206065,-77.6411678314209",
26
+	"37.74430510679532,-77.63172645568848",
27
+	"37.76641925847049,-77.66846199035645"
28 28
 );
29 29
 
30 30
 $TerritoryParameters = Territory::fromArray(array(
31
-    "territory_name"   => "Test Polygonian Territory ".strval(rand(10000, 99999)),
32
-    "territory_color"  => "ff7700",
33
-    "territory"        => $territoryParams
31
+	"territory_name"   => "Test Polygonian Territory ".strval(rand(10000, 99999)),
32
+	"territory_color"  => "ff7700",
33
+	"territory"        => $territoryParams
34 34
 ));
35 35
 
36 36
 $territory = new Territory();
Please login to merge, or discard this patch.
examples/Territories/GetTerritory.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 
19 19
 $territoryParams['type'] = TerritoryTypes::CIRCLE;
20 20
 $territoryParams['data'] = array(
21
-    "37.569752822786455,-77.47833251953125",
22
-    "5000"
21
+	"37.569752822786455,-77.47833251953125",
22
+	"5000"
23 23
 );
24 24
 
25 25
 $TerritoryParameters = Territory::fromArray(array(
26
-    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
-    "territory_color"  => "ff7700",
28
-    "territory"        => $territoryParams
26
+	"territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
+	"territory_color"  => "ff7700",
28
+	"territory"        => $territoryParams
29 29
 ));
30 30
 
31 31
 $territory = new Territory();
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 echo "---------------------------------------------------------------<br><br>";
42 42
 
43 43
 $params = array(
44
-    "territory_id" => $territory_id
44
+	"territory_id" => $territory_id
45 45
 );
46 46
 
47 47
 $result1 = $territory->getTerritory($params);
Please login to merge, or discard this patch.
examples/Routes/SearchRoute.php 2 patches
Indentation   +9 added lines, -9 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,15 +22,15 @@  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'])) {
28
-        echo "Route ID - > " . $results['route_id'] . "<br>";
29
-    }
27
+	if (isset($results['route_id'])) {
28
+		echo "Route ID - > " . $results['route_id'] . "<br>";
29
+	}
30 30
     
31
-    if (isset($results['parameters']->route_name)) {
32
-        echo "Route name - > ".$results['parameters']->route_name."<br>";
33
-    }
31
+	if (isset($results['parameters']->route_name)) {
32
+		echo "Route name - > ".$results['parameters']->route_name."<br>";
33
+	}
34 34
 
35
-    echo "<br>";
35
+	echo "<br>";
36 36
 }
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;
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     $results = (array)$routeResult;
26 26
     
27 27
     if (isset($results['route_id'])) {
28
-        echo "Route ID - > " . $results['route_id'] . "<br>";
28
+        echo "Route ID - > ".$results['route_id']."<br>";
29 29
     }
30 30
     
31 31
     if (isset($results['parameters']->route_name)) {
Please login to merge, or discard this patch.
examples/Optimizations/RemoveOptimization.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
 
25 25
 // Remove an optimization
26 26
 $params = array(
27
-    "optimization_problem_ids"  => array(
28
-        "0" => $optimizationProblemId
29
-    ),
30
-    "redirect"  => 0
27
+	"optimization_problem_ids"  => array(
28
+		"0" => $optimizationProblemId
29
+	),
30
+	"redirect"  => 0
31 31
 );
32 32
 
33 33
 $result = $optimization->removeOptimization($params);
Please login to merge, or discard this patch.
examples/Vehicles/CreateHeavyTruck.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -18,38 +18,38 @@
 block discarded – undo
18 18
 $vehicle = new Vehicle();
19 19
 
20 20
 $vehicleParameters = Vehicle::fromArray(array(
21
-    'vehicle_alias'                    => 'Peterbilt 579',
22
-    'vehicle_vin'                      => '1NP5DB9X93N507873',
23
-    'vehicle_license_plate'            => 'PPV7516',
24
-    'license_start_date'               => '2017-06-05',
25
-    'license_end_date'                 => '2021-08-14',
26
-    'vehicle_model'                    => '579',
27
-    'vehicle_model_year'               => 2015,
28
-    'vehicle_year_acquired'            => 2018,
29
-    'vehicle_reg_country_id'           => '223',
30
-    'vehicle_make'                     => 'Peterbilt',
31
-    'vehicle_type_id'                  => 'tractor_trailer',
32
-    'has_trailer'                      => true,
33
-    'vehicle_axle_count'               => 5,
34
-    'mpg_city'                         => 6,
35
-    'mpg_highway'                      => 12,
36
-    'fuel_type'                        => 'diesel',
37
-    'height_inches'                    => 114,
38
-    'height_metric'                    => 290,
39
-    'weight_lb'                        => 50350,
40
-    'maxWeightPerAxleGroupInPounds'    => 40000,
41
-    'max_weight_per_axle_group_metric' => 18000,
42
-    'widthInInches'                    => 102,
43
-    'width_metric'                     => 258,
44
-    'lengthInInches'                   => 640,
45
-    'length_metric'                    => 1625,
46
-    'Use53FootTrailerRouting'          => 'YES',
47
-    'UseTruckRestrictions'             => 'YES',
48
-    'DividedHighwayAvoidPreference'    => 'STRONG_AVOID',
49
-    'FreewayAvoidPreference'           => 'STRONG_AVOID',
50
-    'truck_config'                     => '53_SEMI_TRAILER',
51
-    'InternationalBordersOpen'         => 'YES',
52
-    'purchased_new'                    => true
21
+	'vehicle_alias'                    => 'Peterbilt 579',
22
+	'vehicle_vin'                      => '1NP5DB9X93N507873',
23
+	'vehicle_license_plate'            => 'PPV7516',
24
+	'license_start_date'               => '2017-06-05',
25
+	'license_end_date'                 => '2021-08-14',
26
+	'vehicle_model'                    => '579',
27
+	'vehicle_model_year'               => 2015,
28
+	'vehicle_year_acquired'            => 2018,
29
+	'vehicle_reg_country_id'           => '223',
30
+	'vehicle_make'                     => 'Peterbilt',
31
+	'vehicle_type_id'                  => 'tractor_trailer',
32
+	'has_trailer'                      => true,
33
+	'vehicle_axle_count'               => 5,
34
+	'mpg_city'                         => 6,
35
+	'mpg_highway'                      => 12,
36
+	'fuel_type'                        => 'diesel',
37
+	'height_inches'                    => 114,
38
+	'height_metric'                    => 290,
39
+	'weight_lb'                        => 50350,
40
+	'maxWeightPerAxleGroupInPounds'    => 40000,
41
+	'max_weight_per_axle_group_metric' => 18000,
42
+	'widthInInches'                    => 102,
43
+	'width_metric'                     => 258,
44
+	'lengthInInches'                   => 640,
45
+	'length_metric'                    => 1625,
46
+	'Use53FootTrailerRouting'          => 'YES',
47
+	'UseTruckRestrictions'             => 'YES',
48
+	'DividedHighwayAvoidPreference'    => 'STRONG_AVOID',
49
+	'FreewayAvoidPreference'           => 'STRONG_AVOID',
50
+	'truck_config'                     => '53_SEMI_TRAILER',
51
+	'InternationalBordersOpen'         => 'YES',
52
+	'purchased_new'                    => true
53 53
 ));
54 54
 
55 55
 $result = $vehicle->createVehicle($vehicleParameters);
Please login to merge, or discard this patch.
examples/Vehicles/UpdateVehicle.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -23,17 +23,17 @@
 block discarded – undo
23 23
 
24 24
 // Update the vehicle
25 25
 $vehicleParameters = Vehicle::fromArray(array(
26
-    'vehicle_id'             => $randomVehicleID,
27
-    'vehicle_model_year'     => 2013,
28
-    'vehicle_year_acquired'  => 2016,
29
-    'vehicle_reg_country_id' => '223',
30
-    'vehicle_make'           => 'Ford',
31
-    'vehicle_axle_count'     => 3,
32
-    'mpg_city'               => 11,
33
-    'mpg_highway'            => 17,
34
-    'fuel_type'              => 'unleaded 93',
35
-    'height_inches'          => 74,
36
-    'weight_lb'              => 2098
26
+	'vehicle_id'             => $randomVehicleID,
27
+	'vehicle_model_year'     => 2013,
28
+	'vehicle_year_acquired'  => 2016,
29
+	'vehicle_reg_country_id' => '223',
30
+	'vehicle_make'           => 'Ford',
31
+	'vehicle_axle_count'     => 3,
32
+	'mpg_city'               => 11,
33
+	'mpg_highway'            => 17,
34
+	'fuel_type'              => 'unleaded 93',
35
+	'height_inches'          => 74,
36
+	'weight_lb'              => 2098
37 37
 ));
38 38
 
39 39
 $result = $vehicle->updateVehicle($vehicleParameters);
Please login to merge, or discard this patch.
examples/Tracking/TrackDeviceLastLocationHistory.php 1 patch
Indentation   +22 added lines, -22 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,24 +46,24 @@  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
-    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>";
68
-    }
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>";
68
+	}
69 69
 }
Please login to merge, or discard this patch.