update v1.0.3.3
This commit is contained in:
21
vendor/giggsey/libphonenumber-for-php/src/libphonenumber/MetadataSourceInterface.php
vendored
Normal file
21
vendor/giggsey/libphonenumber-for-php/src/libphonenumber/MetadataSourceInterface.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace libphonenumber;
|
||||
|
||||
|
||||
interface MetadataSourceInterface
|
||||
{
|
||||
/**
|
||||
* Gets phone metadata for a region.
|
||||
* @param string $regionCode the region code.
|
||||
* @return PhoneMetadata the phone metadata for that region, or null if there is none.
|
||||
*/
|
||||
public function getMetadataForRegion($regionCode);
|
||||
|
||||
/**
|
||||
* Gets phone metadata for a non-geographical region.
|
||||
* @param int $countryCallingCode the country calling code.
|
||||
* @return PhoneMetadata the phone metadata for that region, or null if there is none.
|
||||
*/
|
||||
public function getMetadataForNonGeographicalRegion($countryCallingCode);
|
||||
}
|
||||
Reference in New Issue
Block a user