JsLayoutDataProviderInterface.php 357 B

1234567891011121314151617181920212223
  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 interface
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface JsLayoutDataProviderInterface
  14. {
  15. /**
  16. * Get data
  17. *
  18. * @return array
  19. */
  20. public function getData();
  21. }