17 lines
396 B
PHP
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();
|
|
}
|
|
}
|