GetUtilityPageIdentifiersInterface.php 363 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Cms\Api;
  7. /**
  8. * Utility Cms Pages
  9. *
  10. * @api
  11. * @since 102.0.4
  12. */
  13. interface GetUtilityPageIdentifiersInterface
  14. {
  15. /**
  16. * Get List Page Identifiers
  17. * @return array
  18. * @since 102.0.4
  19. */
  20. public function execute();
  21. }