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 ( 0e4df4...84c959 )
by Igor
01:44 queued 12s
created
examples/Routes/GetRoutes.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.
examples/Routes/RecomputeRouteDirections.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/UpdateDestinationCustomData.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/AvoidanceZones/UpdateAvoidanceZone.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
 $avoidanceZone = new AvoidanceZone();
32 32
 
33
-$result = (array) $avoidanceZone->addAvoidanceZone($avoidanceZoneParameters);
33
+$result = (array)$avoidanceZone->addAvoidanceZone($avoidanceZoneParameters);
34 34
 
35 35
 assert(isset($result), 'Failed to create new Avoidance Zone');
36 36
 
Please login to merge, or discard this patch.
examples/AvoidanceZones/DeleteAvoidanceZone.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
 $avoidanceZone = new AvoidanceZone();
32 32
 
33
-$result = (array) $avoidanceZone->addAvoidanceZone($avoidanceZoneParameters);
33
+$result = (array)$avoidanceZone->addAvoidanceZone($avoidanceZoneParameters);
34 34
 
35 35
 assert(isset($result), 'Failed to create new Avoidance Zone');
36 36
 
Please login to merge, or discard this patch.
examples/multiple_depot_multiple_driver.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/Territories/GetTerritory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
 $territory = new Territory();
32 32
 
33
-$result = (array) $territory->addTerritory($TerritoryParameters);
33
+$result = (array)$territory->addTerritory($TerritoryParameters);
34 34
 
35 35
 assert(!is_null($result), "Cannot create a territory");
36 36
 assert(isset($result['territory_id']), "Cannot create a territory");
Please login to merge, or discard this patch.
examples/AddressBook/GetAddressBookLocation.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
 
19 19
 $randomLocation = $abLocation->getRandomAddressBookLocation($AddressBookLocationParameters);
20 20
 
21
-if (assert(null != $randomLocation, 'Cannot get a randoma address book location'));
21
+if (assert(null!=$randomLocation, 'Cannot get a randoma address book location'));
22 22
 
23 23
 // Get the address book location by address_id
24 24
 $addressID = $randomLocation['address_id'];
Please login to merge, or discard this patch.
examples/AddressBook/RemoveAddressBookLocations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     $address_id = $createdContact['address_id'];
29 29
 }
30 30
 
31
-assert($address_id != -1, 'Creating of Address Book Location was failed. Try again!.. <br>');
31
+assert($address_id!=-1, 'Creating of Address Book Location was failed. Try again!.. <br>');
32 32
 
33 33
 echo 'Address Book Location with address_id = '.strval($address_id).' was successfully added<br>';
34 34
 
Please login to merge, or discard this patch.