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

GA Types in PHP SDK #1837

Merged
merged 2 commits into from
Mar 31, 2025
Merged

GA Types in PHP SDK #1837

merged 2 commits into from
Mar 31, 2025

Conversation

prathmesh-stripe
Copy link
Contributor

@prathmesh-stripe prathmesh-stripe commented Mar 31, 2025

Why?

We improved the type support in PHP SDK in a recent beta release. Now we are GAing this support to all SDK versions going forward.

RFC

Changelog

  • Added type hints for method parameters
    • PHPStorm IDE with array type hints
  • Improved type hints for resource properties that are not primitive types. Take for example, the invoice settings in Customer resource. Previously, you could not reference inner fields like custom_fields on customer->invoice_settings without PHPStan complaining. This is now fixed.
    • Before: @property null|\Stripe\StripeObject $invoice_settings
    • Now: @property object{custom_fields: null|object{name: string, value: string}&\Stripe\StripeObject&\stdClass[], default_payment_method: null|string|\Stripe\PaymentMethod, footer: null|string, rendering_options: null|object{amount_tax_display: null|string, template: null|string}&\Stripe\StripeObject&\stdClass}&\Stripe\StripeObject&\stdClass $invoice_settings

@prathmesh-stripe prathmesh-stripe requested a review from a team as a code owner March 31, 2025 22:58
@prathmesh-stripe prathmesh-stripe requested review from mbroshi-stripe and removed request for a team March 31, 2025 22:58
@prathmesh-stripe prathmesh-stripe enabled auto-merge (squash) March 31, 2025 23:23
@prathmesh-stripe prathmesh-stripe merged commit 573cfe9 into master Mar 31, 2025
22 checks passed
@prathmesh-stripe prathmesh-stripe deleted the prathmesh/php-types-ga branch March 31, 2025 23:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants