PageInterface.php 465 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @package Grav\Common\Page
  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\Page\Interfaces;
  9. use Grav\Common\Media\Interfaces\MediaInterface;
  10. /**
  11. * Class implements page interface.
  12. */
  13. interface PageInterface extends PageContentInterface, PageRoutableInterface, PageTranslateInterface, MediaInterface, PageLegacyInterface
  14. {
  15. }