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 ( 43bb01...8911f3 )
by Oleg
05:51
created
examples/Members/member_add_edit_custom_data.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 
25 25
 // Update member
26 26
 $params = Member::fromArray(array (
27
-    "member_id"    => $randomMemberID,
28
-    "custom_data" => array("Custom Key 2" => "Custom Value 2")
27
+	"member_id"    => $randomMemberID,
28
+	"custom_data" => array("Custom Key 2" => "Custom Value 2")
29 29
 ));
30 30
 
31 31
 $response = $member->updateMember($params);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 assert(!is_null($randomMemberID), "There is no member of the type SUB_ACCOUNT_DRIVER in the user's account");
24 24
 
25 25
 // Update member
26
-$params = Member::fromArray(array (
26
+$params = Member::fromArray(array(
27 27
     "member_id"    => $randomMemberID,
28 28
     "custom_data" => array("Custom Key 2" => "Custom Value 2")
29 29
 ));
Please login to merge, or discard this patch.