Laravel\Cashier\Subscription::getDiscountForSwitchToMonthly PHP Method

getDiscountForSwitchToMonthly() protected method

Get the discount to apply when switching to a monthly plan.
protected getDiscountForSwitchToMonthly ( BraintreePlan $currentPlan, BraintreePlan $plan ) : object
$currentPlan BraintreePlan
$plan BraintreePlan
return object
    protected function getDiscountForSwitchToMonthly($currentPlan, $plan)
    {
        return (object) ['amount' => $plan->price, 'numberOfBillingCycles' => floor($this->moneyRemainingOnYearlyPlan($currentPlan) / $plan->price)];
    }