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

Handling of next subscription type for trial periods #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changes
mikoczy committed Jan 19, 2022
commit b6dd5aaf6e821c68c1aa2036e8a1f7d5c30548cb
Original file line number Diff line number Diff line change
@@ -33,9 +33,12 @@ final public function update(IRow &$row, $data)
final public function findSubscriptionTypeByAppleAppstoreProductId(string $appleAppstoreProductId, bool $followNextSubscriptionType = true): ?ActiveRow
{
$appStoreSubscriptionType = $this->findBy('product_id', $appleAppstoreProductId);
if (!$appStoreSubscriptionType instanceof ActiveRow) {
if (!$appStoreSubscriptionType) {
return null;
}
return $followNextSubscriptionType && $appStoreSubscriptionType->subscription_type->next_subscription_type_id !== null ? $appStoreSubscriptionType->subscription_type->next_subscription_type : $appStoreSubscriptionType->subscription_type;
if ($followNextSubscriptionType && $appStoreSubscriptionType->subscription_type->next_subscription_type_id !== null) {
return $appStoreSubscriptionType->subscription_type->next_subscription_type;
}
return $appStoreSubscriptionType->subscription_type;
}
}