Laravel version update
Laravel version update
This commit is contained in:
31
vendor/giggsey/libphonenumber-for-php/src/Leniency.php
vendored
Normal file
31
vendor/giggsey/libphonenumber-for-php/src/Leniency.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace libphonenumber;
|
||||
|
||||
use libphonenumber\Leniency\Possible;
|
||||
use libphonenumber\Leniency\StrictGrouping;
|
||||
use libphonenumber\Leniency\Valid;
|
||||
use libphonenumber\Leniency\ExactGrouping;
|
||||
|
||||
class Leniency
|
||||
{
|
||||
public static function POSSIBLE()
|
||||
{
|
||||
return new Possible;
|
||||
}
|
||||
|
||||
public static function VALID()
|
||||
{
|
||||
return new Valid;
|
||||
}
|
||||
|
||||
public static function STRICT_GROUPING()
|
||||
{
|
||||
return new StrictGrouping;
|
||||
}
|
||||
|
||||
public static function EXACT_GROUPING()
|
||||
{
|
||||
return new ExactGrouping;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user