Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/NumberFormatter.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework;

class NumberFormatter extends \NumberFormatter
{
    /**
     * Creates a currency instance.
     *
     * @param null $locale Locale name
     * @param null $style
     * @param null $pattern
     */
    public function __construct(
        $locale = null,
        $style = \NumberFormatter::CURRENCY,
        $pattern = null
    ) {
        parent::__construct($locale, $style, $pattern);
    }
}