From fa7507079c2ad784fb166239ae7b63ef716ac385 Mon Sep 17 00:00:00 2001 From: miroslav-demcak-cz <1109811+miroslav-demcak-cz@users.noreply.github.com> Date: Fri, 19 Apr 2019 17:44:59 +0200 Subject: [PATCH] Corrects type of $personId in PHPDoc comment. --- lib/Account.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Account.php b/lib/Account.php index e48ec556d..1c10fa2f3 100644 --- a/lib/Account.php +++ b/lib/Account.php @@ -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 * @@ -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 * @@ -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 *