PackageInterface.php 735 B

123456789101112131415161718192021222324252627282930313233343536
  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\Templating\Asset;
  11. /**
  12. * Asset package interface.
  13. *
  14. * @author Kris Wallsmith <kris@symfony.com>
  15. */
  16. interface PackageInterface
  17. {
  18. /**
  19. * Returns the asset package version.
  20. *
  21. * @return string The version string
  22. */
  23. public function getVersion();
  24. /**
  25. * Returns an absolute or root-relative public path.
  26. *
  27. * @param string $path A path
  28. *
  29. * @return string The public path
  30. */
  31. public function getUrl($path);
  32. }