Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace libphonenumber;
6
 
7
/**
8
 * @interal
9
 * @phpstan-import-type PhoneMetadataArray from PhoneMetadata
10
 */
11
interface MetadataLoaderInterface
12
{
13
    /**
14
     * @param string $metadataFileName File name (including path) of metadata to load.
15
     * @return PhoneMetadataArray
16
     */
17
    public function loadMetadata(string $metadataFileName): array;
18
}