Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace libphonenumber;
4
 
5
/**
6
 * Cost categories of short numbers
7
 * @package libphonenumber
8
 */
9
class ShortNumberCost
10
{
11
    public const TOLL_FREE = 3;
12
    public const PREMIUM_RATE = 4;
13
    public const STANDARD_RATE = 30;
14
    public const UNKNOWN_COST = 10;
15
}