mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Fix wrong variable in the BillingSubscriptionTransformer.php
This commit is contained in:
parent
83b23956f6
commit
737020eeed
@ -58,9 +58,9 @@ class BillingSubscriptionTransformer extends EntityTransformer
|
||||
'refund_period' => (int)$billing_subscription->refund_period,
|
||||
'webhook_configuration' => (string)$billing_subscription->webhook_configuration,
|
||||
'is_deleted' => (bool)$billing_subscription->is_deleted,
|
||||
'created_at' => (int) $credit->created_at,
|
||||
'updated_at' => (int) $credit->updated_at,
|
||||
'archived_at' => (int) $credit->deleted_at,
|
||||
'created_at' => (int)$billing_subscription->created_at,
|
||||
'updated_at' => (int)$billing_subscription->updated_at,
|
||||
'archived_at' => (int)$billing_subscription->deleted_at,
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user