| Current Path : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Config/Backend/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Config/Backend/Round.php |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
* @package Reward Points Base for Magento 2
*/
namespace Amasty\Rewards\Model\Config\Backend;
class Round extends \Magento\Framework\App\Config\Value
{
/**
* @return \Magento\Framework\App\Config\Value|void
*/
public function beforeSave()
{
$this->setValue((float)$this->getValue());
parent::beforeSave();
}
}