Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/vertexinc/module-tax/Model/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/vertexinc/module-tax/Model/CollatorFactory.php

<?php
/**
 * @copyright  Vertex. All rights reserved.  https://www.vertexinc.com/
 * @author     Mediotype                     https://www.mediotype.com/
 */

namespace Vertex\Tax\Model;

/**
 * Factory for {@see \Collator}
 */
class CollatorFactory
{
    /**
     * Create an instance of {@see \Collator}
     */
    public function create(string $locale): \Collator
    {
        return new \Collator($locale);
    }
}