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.
Completed
Push — master ( 55318a...b54c2e )
by Oleg
02:27
created
examples/AddressBook/UpdateAddressBookLocation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $AdressBookLocationParameters = AddressBookLocation::fromArray(array(
16
-    "first_name"  => "Test FirstName ".strval(rand(10000,99999)),
17
-    "address_1"   => "Test Address1 ".strval(rand(10000,99999)),
16
+    "first_name"  => "Test FirstName ".strval(rand(10000, 99999)),
17
+    "address_1"   => "Test Address1 ".strval(rand(10000, 99999)),
18 18
     "cached_lat"  => 38.024654,
19 19
     "cached_lng"  => -77.338814
20 20
 ));
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     $address_id = $abcResult["address_id"];
32 32
 }
33 33
 
34
-assert($address_id != -1, "Cannot create an address book location. <br><br>");
34
+assert($address_id!=-1, "Cannot create an address book location. <br><br>");
35 35
 
36 36
 echo "Address Book Location with <b>address_id = ".strval($address_id)."</b> and <b>first_name = ".$abcResult['first_name']."</b> was successfully added<br>";
37 37
  
@@ -41,6 +41,6 @@  discard block
 block discarded – undo
41 41
 
42 42
 assert(isset($abcResult['first_name']), "Cannot update the address book location. <br><br>");
43 43
 
44
-assert($abcResult['first_name'] == 'Test Firstname Updated', "Cannot update the address book location. <br><br>");
44
+assert($abcResult['first_name']=='Test Firstname Updated', "Cannot update the address book location. <br><br>");
45 45
 
46 46
 echo "The field <b>first_name</b> in the address book location <b>".$address_id."</b> was update to <b>Test Firstname Updated</b> successfuly <br>"; 
Please login to merge, or discard this patch.
examples/AddressBook/RemoveAddressBookLocations.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16 16
 $AdressBookLocationParameters = AddressBookLocation::fromArray(array(
17
-    "first_name"  => "Test FirstName ".strval(rand(10000,99999)),
18
-    "address_1"   => "Test Address1 ".strval(rand(10000,99999)),
17
+    "first_name"  => "Test FirstName ".strval(rand(10000, 99999)),
18
+    "address_1"   => "Test Address1 ".strval(rand(10000, 99999)),
19 19
     "cached_lat"  => 38.024654,
20 20
     "cached_lng"  => -77.338814
21 21
 ));
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     $address_id = $createdContact["address_id"];
31 31
 }
32 32
 
33
-assert($address_id != -1, "Creating of Address Book Location was failed. Try again!.. <br>");
33
+assert($address_id!=-1, "Creating of Address Book Location was failed. Try again!.. <br>");
34 34
 
35 35
 echo "Address Book Location with address_id = ".strval($address_id)." was successfully added<br>";
36 36
 
Please login to merge, or discard this patch.