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 ( d9a634...e591c7 )
by Juan Jose
07:17 queued 16s
created
examples/Geocoding/get_street_adddresses_zip_limit.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
-$gcParameters = (array) Geocoding::fromArray([
13
+$gcParameters = (array)Geocoding::fromArray([
14 14
     'zipcode'   => '00601',
15 15
     'offset'    => 0,
16 16
     'limit'     => 20,
Please login to merge, or discard this patch.
examples/Geocoding/batch_geocode_addresses.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
 $bgResults = $fGeoCoding->forwardGeocoding($geoCodingParameters);
29 29
 
30
-if ('json' == $geoCodingParameters['strExportFormat']) {
30
+if ('json'==$geoCodingParameters['strExportFormat']) {
31 31
     foreach ($bgResults as $bgResult) {
32 32
         Route4Me::simplePrint($bgResult);
33 33
         echo '<br>';
Please login to merge, or discard this patch.
examples/Geocoding/reverse_geocode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 $fgResult = $fGeoCoding->reverseGeocoding($geoCodingParameters);
19 19
 
20
-if ('json' == $geoCodingParameters['format']) {
20
+if ('json'==$geoCodingParameters['format']) {
21 21
     foreach ($fgResult as $dest) {
22 22
         Route4Me::simplePrint($dest);
23 23
         echo '<br>';
Please login to merge, or discard this patch.
examples/Geocoding/get_street_adddresses_zip_all.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
-$gcParameters = (array) Geocoding::fromArray([
13
+$gcParameters = (array)Geocoding::fromArray([
14 14
     'zipcode' => '00601',
15 15
 ]);
16 16
 
Please login to merge, or discard this patch.
examples/Geocoding/forward_geocode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 $fgResult = $fGeoCoding->forwardGeocoding($geoCodingParameters);
19 19
 
20
-if ('json' == $geoCodingParameters['strExportFormat']) {
20
+if ('json'==$geoCodingParameters['strExportFormat']) {
21 21
     Route4Me::simplePrint($fgResult);
22 22
 } else {
23 23
     Route4Me::simplePrint($fgResult['destination']);
Please login to merge, or discard this patch.
examples/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/single_driver_round_trip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,5 +43,5 @@
 block discarded – undo
43 43
 $problems = OptimizationProblem::optimize($optimizationParams);
44 44
 
45 45
 foreach ($problems as $problem) {
46
-    Route4Me::simplePrint($problem, true );
46
+    Route4Me::simplePrint($problem, true);
47 47
 }
Please login to merge, or discard this patch.
examples/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.
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.