Skip to content

Commit

Permalink
Merge pull request #468 from nickdnk/master
Browse files Browse the repository at this point in the history
Updated phpdocs
  • Loading branch information
brandur-stripe authored May 14, 2018
2 parents cd36a55 + 409e1c3 commit b03f03f
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 5 deletions.
5 changes: 4 additions & 1 deletion lib/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,21 @@
* @property bool $details_submitted
* @property string $display_name
* @property string $email
* @property mixed $external_accounts
* @property Collection $external_accounts
* @property mixed $legal_entity
* @property StripeObject $metadata
* @property mixed $payout_schedule
* @property string $payout_statement_descriptor
* @property bool $payouts_enabled
* @property string $product_description
* @property string $statement_descriptor
* @property mixed $support_address
* @property string $support_email
* @property string $support_phone
* @property string $support_url
* @property string $timezone
* @property mixed $tos_acceptance
* @property string $type
* @property mixed $verification
*
* @package Stripe
Expand Down
1 change: 1 addition & 0 deletions lib/Balance.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*
* @property string $object
* @property array $available
* @property array $connect_reserved
* @property bool $livemode
* @property array $pending
*
Expand Down
1 change: 1 addition & 0 deletions lib/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* @property string $description
* @property mixed $discount
* @property string $email
* @property string $invoice_prefix
* @property bool $livemode
* @property StripeObject $metadata
* @property mixed $shipping
Expand Down
5 changes: 3 additions & 2 deletions lib/Payout.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
* @property string $id
* @property string $object
* @property int $amount
* @property int $arrival_date
* @property bool $automatic
* @property string $balance_transaction
* @property string $cancellation_balance_transaction
* @property int $created
* @property string $currency
* @property int $arrival_date
* @property string $destination
* @property string $failure_balance_transaction
* @property string $failure_code
* @property string $failure_message
* @property bool $livemode
Expand Down
4 changes: 3 additions & 1 deletion lib/Plan.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
* @property string $id
* @property string $object
* @property string $aggregate_usage
* @property int $amount
* @property string $billing_scheme
* @property int $created
Expand All @@ -19,8 +20,9 @@
* @property StripeObject $metadata
* @property string $nickname
* @property string $product
* @property array $tiers
* @property mixed $tiers
* @property string $tiers_mode
* @property mixed $transform_usage
* @property int $trial_period_days
* @property string $usage_type
*/
Expand Down
15 changes: 15 additions & 0 deletions lib/Recipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@
* Class Recipient
*
* @package Stripe
*
* @property string $id
* @property string $object
* @property mixed $active_account
* @property Collection $cards
* @property int $created
* @property string $default_card
* @property string $description
* @property string $email
* @property bool $livemode
* @property StripeObject $metadata
* @property string $migrated_to
* @property string $name
* @property string $rolled_back_from
* @property string $type
*/
class Recipient extends ApiResource
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @property string $id
* @property string $object
* @property mixed $bank_account
* @property mixed $card
* @property Card $card
* @property string $client_ip
* @property int $created
* @property bool $livemode
Expand Down

0 comments on commit b03f03f

Please sign in to comment.