RowInterface.php 411 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Listing;
  7. /**
  8. * Interface RowInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface RowInterface
  13. {
  14. /**
  15. * Get data
  16. *
  17. * @param array $dataRow
  18. * @param array $data
  19. * @return mixed
  20. */
  21. public function getData(array $dataRow, array $data = []);
  22. }