FilenameResolverInterface.php 379 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Asset\PreProcessor;
  7. /**
  8. * Interface FilenameResolverInterface
  9. */
  10. interface FilenameResolverInterface
  11. {
  12. /**
  13. * Resolve file name
  14. *
  15. * @param string $path
  16. * @return string
  17. */
  18. public function resolve($path);
  19. }