Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
633 B
PHP
Executable File
21 lines
633 B
PHP
Executable File
<?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);
|
|
}
|