JsLayoutDataProviderPoolInterface.php 337 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\CustomerData;
  7. /**
  8. * Js layout data provider pool interface
  9. */
  10. interface JsLayoutDataProviderPoolInterface
  11. {
  12. /**
  13. * Get data
  14. *
  15. * @return array
  16. */
  17. public function getData();
  18. }