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.
Test Failed
Push — master ( 47d764...311795 )
by Igor
02:54 queued 01:29
created
examples/Routes/AssignMemberToRoute.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 $route->parameters = new \stdClass();
41 41
 
42 42
 $route->parameters = [
43
-    'member_id' => $randomUserID,
43
+	'member_id' => $randomUserID,
44 44
 ];
45 45
 
46 46
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Routes/ShareRoute.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 
20 20
 // Share a route with an email
21 21
 $params = [
22
-    'route_id'          => $route_id,
23
-    'response_format'   => 'json',
24
-    'recipient_email'   => '[email protected]',
22
+	'route_id'          => $route_id,
23
+	'response_format'   => 'json',
24
+	'recipient_email'   => '[email protected]',
25 25
 ];
26 26
 
27 27
 $result = $route->shareRoute($params);
Please login to merge, or discard this patch.
examples/Routes/AssignVehicleToRoute.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 $vehicle = new Vehicles\Vehicle();
17 17
 
18 18
 $vehicleParameters = [
19
-    'with_pagination'   => true,
20
-    'page'              => 1,
21
-    'perPage'           => 10,
19
+	'with_pagination'   => true,
20
+	'page'              => 1,
21
+	'perPage'           => 10,
22 22
 ];
23 23
 
24 24
 $response = $vehicle->getVehicles($vehicleParameters);
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 $route->parameters = new \stdClass();
41 41
 
42 42
 $route->parameters = [
43
-    'vehicle_id' => $vehicleId,
43
+	'vehicle_id' => $vehicleId,
44 44
 ];
45 45
 
46 46
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Routes/GetRoutesFromDateRange.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 Route4Me::setApiKey(Constants::API_KEY);
10 10
 
11 11
 $RouteParameters = [
12
-    'start_date' => '2019-08-01',
13
-    'end_date'   => '2019-08-05'
12
+	'start_date' => '2019-08-01',
13
+	'end_date'   => '2019-08-05'
14 14
 ];
15 15
 
16 16
 $route = new Route();
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
 $routeResults = $route->getRoutes($RouteParameters);
19 19
 
20 20
 foreach ($routeResults as $routeResult) {
21
-    $results = (array) $routeResult;
21
+	$results = (array) $routeResult;
22 22
 
23
-    Route4Me::simplePrint($results);
23
+	Route4Me::simplePrint($results);
24 24
 
25
-    echo '<br>';
25
+	echo '<br>';
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
examples/Routes/GetOriginalRoute.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@
 block discarded – undo
18 18
 assert(!is_null($route_id), "Cannot retrieve a random route ID");
19 19
 
20 20
 $params = [
21
-    'route_id' => $route_id,
21
+	'route_id' => $route_id,
22 22
 ];
23 23
 
24 24
 $status = $route->resequenceAllAddresses($params);
25 25
 
26 26
 $params = [
27
-    'route_id' => $route_id,
28
-    'original' =>  1
27
+	'route_id' => $route_id,
28
+	'original' =>  1
29 29
 ];
30 30
 
31 31
 $routeWithOriginRoute = $route->getRoutes($params);
Please login to merge, or discard this patch.
examples/Routes/GetRoutes.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 Route4Me::setApiKey(Constants::API_KEY);
10 10
 
11 11
 $RouteParameters = [
12
-    'limit'  => 30,
13
-    'offset' => 0,
12
+	'limit'  => 30,
13
+	'offset' => 0,
14 14
 ];
15 15
 
16 16
 $route = new Route();
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
 $routeResults = $route->getRoutes($RouteParameters);
19 19
 
20 20
 foreach ($routeResults as $routeResult) {
21
-    $results = (array) $routeResult;
21
+	$results = (array) $routeResult;
22 22
 
23
-    Route4Me::simplePrint($results);
23
+	Route4Me::simplePrint($results);
24 24
 
25
-    echo '<br>';
25
+	echo '<br>';
26 26
 }
Please login to merge, or discard this patch.
examples/Routes/GetRoutePathPointsCompressed.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -21,26 +21,26 @@
 block discarded – undo
21 21
 
22 22
 // Get a route with the path points
23 23
 $params = [
24
-    'route_path_output'     => 'Points',
25
-    'compress_path_points'  => true,
26
-    'route_id'              => $route_id,
24
+	'route_path_output'     => 'Points',
25
+	'compress_path_points'  => true,
26
+	'route_id'              => $route_id,
27 27
 ];
28 28
 
29 29
 $routeResults = (array) $route->getRoutePoints($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'])) {
36
-            echo 'route_destination_id='.$arAddress['route_destination_id'].'<br>';
37
-        }
35
+		if (isset($araddress['route_destination_id'])) {
36
+			echo 'route_destination_id='.$arAddress['route_destination_id'].'<br>';
37
+		}
38 38
 
39
-        if (isset($arAddress['path_to_next'])) {
40
-            echo 'path_to_next:<br>';
41
-            Route4Me::simplePrint((array) $arAddress['path_to_next']);
42
-        }
39
+		if (isset($arAddress['path_to_next'])) {
40
+			echo 'path_to_next:<br>';
41
+			Route4Me::simplePrint((array) $arAddress['path_to_next']);
42
+		}
43 43
 
44
-        echo '<br>';
45
-    }
44
+		echo '<br>';
45
+	}
46 46
 }
Please login to merge, or discard this patch.
examples/Routes/RecomputeRouteDirections.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 $route->parameters = new \stdClass();
29 29
 
30 30
 $route->parameters = [
31
-    'recompute_directions' => 1,
31
+	'recompute_directions' => 1,
32 32
 ];
33 33
 
34 34
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Routes/GetRouteDirections.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
 // Get a route with the directions
23 23
 $params = [
24
-    'directions' => 1,
25
-    'route_id'   => $route_id,
24
+	'directions' => 1,
25
+	'route_id'   => $route_id,
26 26
 ];
27 27
 
28 28
 $routeResults = (array) $route->getRoutePoints($params);
Please login to merge, or discard this patch.