diff --git a/src/Shipment/Models/ShippingMethod.php b/src/Shipment/Models/ShippingMethod.php index 1999edf5..299820c4 100644 --- a/src/Shipment/Models/ShippingMethod.php +++ b/src/Shipment/Models/ShippingMethod.php @@ -71,7 +71,6 @@ public static function availableOnesForZones(Zone|int ...$zones): Collection ->get(); } - /** @todo Add this to the ShippingMethod interface in v4 */ public function getCalculator(): ShippingFeeCalculator { if (null === $this->calculator) { @@ -81,7 +80,6 @@ public function getCalculator(): ShippingFeeCalculator return ShippingFeeCalculators::make($this->calculator); } - /** @todo Add this to the ShippingMethod interface in v4 */ public function estimate(?object $subject = null): ShippingFee { return $this->getCalculator()->calculate($subject, $this->configuration());