Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrects type of $personId in PHPDoc comment. #636

Merged
merged 1 commit into from
Apr 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public static function createPerson($id, $params = null, $opts = null)

/**
* @param string|null $id The ID of the account to which the person belongs.
* @param array|null $personId The ID of the person to retrieve.
* @param string|null $personId The ID of the person to retrieve.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -260,7 +260,7 @@ public static function retrievePerson($id, $personId, $params = null, $opts = nu

/**
* @param string|null $id The ID of the account to which the person belongs.
* @param array|null $personId The ID of the person to update.
* @param string|null $personId The ID of the person to update.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -273,7 +273,7 @@ public static function updatePerson($id, $personId, $params = null, $opts = null

/**
* @param string|null $id The ID of the account to which the person belongs.
* @param array|null $personId The ID of the person to delete.
* @param string|null $personId The ID of the person to delete.
* @param array|null $params
* @param array|string|null $opts
*
Expand Down