<?phpnamespace App\Utils\Shipping\ShippingCosts;use App\Entity\Gos\Cart;use App\Enum\GosShippingTypes;// TODO: WYDYMKA or not WYDYMKA, zmienić też w services.yamlclass WydymkaBCShippingCostCalculator extends AbstractVariantBasedShippingCostCalculator{ public function getType(): ?int { return GosShippingTypes::BC; } public function calculate(Cart $cart, $price = null): WydymkaBCShippingCostCalculator { $this->costNet = 1000.00; $this->costGross = 1230.00; dump($this); return $this; }}