Skip to content

Commit

Permalink
Merge pull request #659 from virgofx/patch-2
Browse files Browse the repository at this point in the history
Fix parameter type DocBlocks for various nested Account actions
  • Loading branch information
ob-stripe authored May 21, 2019
2 parents 45be848 + ae9e848 commit a5788c7
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions lib/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ public function deauthorize($clientId = null, $opts = null)


/**
* @param string|null $id The ID of the account to which the capability belongs.
* @param string|null $capabilityId The ID of the capability to retrieve.
* @param string $id The ID of the account to which the capability belongs.
* @param string $capabilityId The ID of the capability to retrieve.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -165,8 +165,8 @@ public static function retrieveCapability($id, $capabilityId, $params = null, $o
}

/**
* @param string|null $id The ID of the account to which the capability belongs.
* @param string|null $capabilityId The ID of the capability to update.
* @param string $id The ID of the account to which the capability belongs.
* @param string $capabilityId The ID of the capability to update.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -178,7 +178,7 @@ public static function updateCapability($id, $capabilityId, $params = null, $opt
}

/**
* @param string|null $id The ID of the account on which to retrieve the capabilities.
* @param string $id The ID of the account on which to retrieve the capabilities.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -190,7 +190,7 @@ public static function allCapabilities($id, $params = null, $opts = null)
}

/**
* @param string|null $id The ID of the account on which to create the external account.
* @param string $id The ID of the account on which to create the external account.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -202,8 +202,8 @@ public static function createExternalAccount($id, $params = null, $opts = null)
}

/**
* @param string|null $id The ID of the account to which the external account belongs.
* @param array|null $externalAccountId The ID of the external account to retrieve.
* @param string $id The ID of the account to which the external account belongs.
* @param string $externalAccountId The ID of the external account to retrieve.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -215,8 +215,8 @@ public static function retrieveExternalAccount($id, $externalAccountId, $params
}

/**
* @param string|null $id The ID of the account to which the external account belongs.
* @param array|null $externalAccountId The ID of the external account to update.
* @param string $id The ID of the account to which the external account belongs.
* @param string $externalAccountId The ID of the external account to update.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -228,8 +228,8 @@ public static function updateExternalAccount($id, $externalAccountId, $params =
}

/**
* @param string|null $id The ID of the account to which the external account belongs.
* @param array|null $externalAccountId The ID of the external account to delete.
* @param string $id The ID of the account to which the external account belongs.
* @param string $externalAccountId The ID of the external account to delete.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -241,7 +241,7 @@ public static function deleteExternalAccount($id, $externalAccountId, $params =
}

/**
* @param string|null $id The ID of the account on which to retrieve the external accounts.
* @param string $id The ID of the account on which to retrieve the external accounts.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -253,7 +253,7 @@ public static function allExternalAccounts($id, $params = null, $opts = null)
}

/**
* @param string|null $id The ID of the account on which to create the login link.
* @param string $id The ID of the account on which to create the login link.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -280,7 +280,7 @@ public function persons($params = null, $options = null)
}

/**
* @param string|null $id The ID of the account on which to create the person.
* @param string $id The ID of the account on which to create the person.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -292,8 +292,8 @@ public static function createPerson($id, $params = null, $opts = null)
}

/**
* @param string|null $id The ID of the account to which the person belongs.
* @param string|null $personId The ID of the person to retrieve.
* @param string $id The ID of the account to which the person belongs.
* @param string $personId The ID of the person to retrieve.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -305,8 +305,8 @@ 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 string|null $personId The ID of the person to update.
* @param string $id The ID of the account to which the person belongs.
* @param string $personId The ID of the person to update.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -318,8 +318,8 @@ 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 string|null $personId The ID of the person to delete.
* @param string $id The ID of the account to which the person belongs.
* @param string $personId The ID of the person to delete.
* @param array|null $params
* @param array|string|null $opts
*
Expand All @@ -331,7 +331,7 @@ public static function deletePerson($id, $personId, $params = null, $opts = null
}

/**
* @param string|null $id The ID of the account on which to retrieve the persons.
* @param string $id The ID of the account on which to retrieve the persons.
* @param array|null $params
* @param array|string|null $opts
*
Expand Down

0 comments on commit a5788c7

Please sign in to comment.