Wraps GitHub Issue Comments API.
Requires authentication.
$memberships = $client->currentUser()->memberships()->all();
Returns an array of your memberships in all organizations you are part of.
Requires authentication.
$membership = $client->currentUser()->memberships()->organization('KnpLabs');
KnpLabs
: the organization
Returns an array of one membership in a specific organization.
Requires authentication.
$membership = $client->currentUser()->memberships()->edit('KnpLabs');
KnpLabs
: the organization
Update your membership to an organization. The only possible action is to activate your membership.