MetadataLoaderInterface.php 249 B

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