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 ( 6c805f...bce16d )
by Igor
09:12 queued 14s
created
examples/single_driver_route_ten_stops.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,4 +40,4 @@
 block discarded – undo
40 40
 
41 41
 $problem = OptimizationProblem::optimize($optimizationParams);
42 42
 
43
-Route4Me::simplePrint((array) $problem, true);
43
+Route4Me::simplePrint((array)$problem, true);
Please login to merge, or discard this patch.
examples/SingleDepotMultipleDriverNoTimeWindow.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,12 +47,12 @@
 block discarded – undo
47 47
 
48 48
 $problem = OptimizationProblem::optimize($optimizationParams);
49 49
 
50
-foreach ((array) $problem as $key => $value) {
50
+foreach ((array)$problem as $key => $value) {
51 51
     if (is_string($value)) {
52 52
         echo $key.' --> '.$value.'<br>';
53 53
     } else {
54 54
         echo "************ $key ************* <br>";
55
-        Route4Me::simplePrint((array) $value, true);
55
+        Route4Me::simplePrint((array)$value, true);
56 56
         echo '******************************* <br>';
57 57
     }
58 58
 }
Please login to merge, or discard this patch.
examples/Members/get_single_user.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 $users = $member->getUsers();
22 22
 
23 23
 assert(!is_null($users), 'Cannot retrieve list of the users');
24
-assert(2 == sizeof($users), 'Cannot retrieve list of the users');
24
+assert(2==sizeof($users), 'Cannot retrieve list of the users');
25 25
 assert(isset($users['results']), 'Cannot retrieve list of the users');
26 26
 assert(isset($users['total']), 'Cannot retrieve list of the users');
27 27
 
Please login to merge, or discard this patch.
examples/Routes/UpdateRouteDestination.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 assert(!is_null($route_id), "Cannot retrieve a random route ID");
21 21
 
22 22
 // Get a random address ID from selected route above
23
-$addressRand = (array) $route->GetRandomAddressFromRoute($route_id);
23
+$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
24 24
 
25 25
 $route->route_id = $route_id;
26 26
 $route->route_destination_id = $addressRand['route_destination_id'];
Please login to merge, or discard this patch.
examples/Routes/GetScheduleCalendar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 // Set the api key in the Route4Me class
11 11
 Route4Me::setApiKey(Constants::API_KEY);
12 12
 
13
-$now            = new \DateTime();
13
+$now = new \DateTime();
14 14
 
15 15
 $schedCalendarParams = new ScheduleCalendarParameters();
16 16
 
Please login to merge, or discard this patch.
examples/Routes/UpdateRouteParameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,4 +38,4 @@
 block discarded – undo
38 38
 
39 39
 $result = $route->update();
40 40
 
41
-Route4Me::simplePrint((array) $result->parameters);
41
+Route4Me::simplePrint((array)$result->parameters);
Please login to merge, or discard this patch.
examples/Routes/AssignMemberToRoute.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 $users = $member->getUsers();
19 19
 
20 20
 assert(!is_null($users), 'Cannot retrieve list of the users');
21
-assert(2 == sizeof($users), 'Cannot retrieve list of the users');
21
+assert(2==sizeof($users), 'Cannot retrieve list of the users');
22 22
 assert(isset($users['results']), 'Cannot retrieve list of the users');
23 23
 assert(isset($users['total']), 'Cannot retrieve list of the users');
24 24
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 $route = new Route();
51 51
 
52
-$assignedRoute= $route->getRoutes(['route_id' => $routeId]);
52
+$assignedRoute = $route->getRoutes(['route_id' => $routeId]);
53 53
 
54 54
 echo "Assigned member id -> ".$assignedRoute->parameters->{'member_id'};
55 55
 
Please login to merge, or discard this patch.
examples/Routes/AssignVehicleToRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,6 +49,6 @@
 block discarded – undo
49 49
 
50 50
 $route = new Route();
51 51
 
52
-$assignedRoute= $route->getRoutes(['route_id' => $routeId]);
52
+$assignedRoute = $route->getRoutes(['route_id' => $routeId]);
53 53
 
54 54
 Route4Me::simplePrint((array)$assignedRoute->vehicle, true);
Please login to merge, or discard this patch.
examples/Routes/GetRoutesFromDateRange.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 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 23
     Route4Me::simplePrint($results);
24 24
 
Please login to merge, or discard this patch.