1<?php
2
3namespace libphonenumber;
4
5interface MetadataLoaderInterface
6{
7    /**
8     * @param string $metadataFileName File name (including path) of metadata to load.
9     * @return mixed
10     */
11    public function loadMetadata($metadataFileName);
12}
13