Skip to content

Commit

Permalink
Merge pull request #614 from kristopherchun/master
Browse files Browse the repository at this point in the history
Added subscription status constants for "incomplete" and "incomplete_…
  • Loading branch information
ob-stripe authored Mar 22, 2019
2 parents a44a095 + 0845678 commit 0af11ae
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,13 @@ class Subscription extends ApiResource
*
* @link https://stripe.com/docs/api#subscription_object-status
*/
const STATUS_ACTIVE = 'active';
const STATUS_CANCELED = 'canceled';
const STATUS_PAST_DUE = 'past_due';
const STATUS_TRIALING = 'trialing';
const STATUS_UNPAID = 'unpaid';
const STATUS_ACTIVE = 'active';
const STATUS_CANCELED = 'canceled';
const STATUS_PAST_DUE = 'past_due';
const STATUS_TRIALING = 'trialing';
const STATUS_UNPAID = 'unpaid';
const STATUS_INCOMPLETE = 'incomplete';
const STATUS_INCOMPLETE_EXPIRED = 'incomplete_expired';

public static function getSavedNestedResources()
{
Expand Down

0 comments on commit 0af11ae

Please sign in to comment.