# payplug/1.0.20/lib/libphonenumber/MetadataSourceInterface.php

PayPlug for WooCommerce (Official), version 1.0.20. 21 lines.

- Page: https://pluginprobe.com/plugins/payplug/1.0.20/code/lib/libphonenumber/MetadataSourceInterface.php
- Raw: https://pluginprobe.com/plugins/payplug/1.0.20/raw/lib/libphonenumber/MetadataSourceInterface.php
- Modified: 2019-09-06T13:54:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/payplug/1.0.20/code/lib/libphonenumber/MetadataSourceInterface.php#L10-L20`.

```php
<?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);
}

```
