Files
kupshop/bundles/External/CykloSpecialityBundle/Context/UserContext.php
2025-08-02 16:30:27 +02:00

17 lines
396 B
PHP

<?php
declare(strict_types=1);
namespace External\CykloSpecialityBundle\Context;
use KupShop\KupShopBundle\PriceType\PriceOriginalPriceType;
use KupShop\KupShopBundle\PriceType\PriceTypeInterface;
class UserContext extends \KupShop\KupShopBundle\Context\UserContext
{
protected function loadRetailPriceType(): PriceTypeInterface
{
return new PriceOriginalPriceType();
}
}