CollectionInterface.php 372 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Mview\View\State;
  7. /**
  8. * Interface \Magento\Framework\Mview\View\State\CollectionInterface
  9. *
  10. */
  11. interface CollectionInterface
  12. {
  13. /**
  14. * Retrieve loaded states
  15. *
  16. * @return array
  17. */
  18. public function getItems();
  19. }