Your IP : 216.73.217.13


Current Path : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Config/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Config/Utils.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Model\Config;

class Utils
{
    /**
     * Convert comma separated string to array.
     *
     * @param string $string
     * @return array
     */
    public function convertToArray(string $string): array
    {
        $result = explode(',', $string);
        $result = array_map(function (string $value) {
            return trim($value);
        }, $result);
        $result = array_filter($result);

        return $result;
    }
}