Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

<?php

declare(strict_types=1);

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(string $regionCode): PhoneMetadata;

    /**
     * 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(int $countryCallingCode): PhoneMetadata;
}