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

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

- Page: https://pluginprobe.com/plugins/payplug/2.18.0/code/lib/libphonenumber/MetadataSourceInterface.php
- Raw: https://pluginprobe.com/plugins/payplug/2.18.0/raw/lib/libphonenumber/MetadataSourceInterface.php
- Modified: 2026-06-16T10:52:52+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/2.18.0/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);
}

```
