MediaCollectionInterface.php 500 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @package Grav\Common\Media
  4. *
  5. * @copyright Copyright (C) 2015 - 2019 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. namespace Grav\Common\Media\Interfaces;
  9. /**
  10. * Class implements media collection interface.
  11. */
  12. interface MediaCollectionInterface extends \Grav\Framework\Media\Interfaces\MediaCollectionInterface
  13. {
  14. /**
  15. * Return media path.
  16. *
  17. * @return string|null
  18. */
  19. public function getPath();
  20. }