Files
faveo/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ValidationResult.php
Bhanu Slathia b1f62846ab Update v1.0.6
2016-02-16 23:24:52 +05:30

15 lines
245 B
PHP

<?php
namespace libphonenumber;
/**
* Possible outcomes when testing if a PhoneNumber is possible.
*/
class ValidationResult
{
const IS_POSSIBLE = 0;
const INVALID_COUNTRY_CODE = 1;
const TOO_SHORT = 2;
const TOO_LONG = 3;
}