aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/commerceguys/intl/src/NumberFormat/NumberFormatRepositoryInterface.php
blob: b8f7facc4d488bf7904dde7c2d8e97d98f22113b (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                         
                                                    
      
                                                     
      
                           
       
                                 
 
<?php

namespace CommerceGuys\Intl\NumberFormat;

/**
 * Number format repository interface.
 */
interface NumberFormatRepositoryInterface
{
    /**
     * Gets a number format for the provided locale.
     *
     * @param string $locale The locale (i.e. fr-FR).
     *
     * @return NumberFormat
     */
    public function get($locale);
}