PackageInterface.php 775 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Asset;
  11. /**
  12. * Asset package interface.
  13. *
  14. * @author Kris Wallsmith <kris@symfony.com>
  15. */
  16. interface PackageInterface
  17. {
  18. /**
  19. * Returns the asset version for an asset.
  20. *
  21. * @param string $path A path
  22. *
  23. * @return string The version string
  24. */
  25. public function getVersion($path);
  26. /**
  27. * Returns an absolute or root-relative public path.
  28. *
  29. * @param string $path A path
  30. *
  31. * @return string The public path
  32. */
  33. public function getUrl($path);
  34. }