From dcb84ee37987fcfe179d7cafdb777b28578ed75b Mon Sep 17 00:00:00 2001 From: Luke Holder Date: Wed, 18 Oct 2023 11:39:41 +0800 Subject: [PATCH] Todo --- src/base/PlanInterface.php | 1 + src/models/subscriptions/DummyPlan.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/base/PlanInterface.php b/src/base/PlanInterface.php index e8a358a747..8a18326478 100644 --- a/src/base/PlanInterface.php +++ b/src/base/PlanInterface.php @@ -20,6 +20,7 @@ interface PlanInterface { /** * Returns whether it's possible to switch to this plan from a different plan. + * TODO: Fix typo in next major release currentPlant -> currentPlan */ public function canSwitchFrom(PlanInterface $currentPlant): bool; } diff --git a/src/models/subscriptions/DummyPlan.php b/src/models/subscriptions/DummyPlan.php index d6cd012513..0cf8b7b9ff 100644 --- a/src/models/subscriptions/DummyPlan.php +++ b/src/models/subscriptions/DummyPlan.php @@ -20,6 +20,7 @@ class DummyPlan extends Plan { /** * @inheritdoc + * TODO: Fix typo in next major release currentPlant -> currentPlan */ public function canSwitchFrom(PlanInterface $currentPlant): bool {