ExportDataHandlerInterface.php 414 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Analytics\Model;
  7. /**
  8. * The interface represents the type of classes that handling of a new data collection for MBI.
  9. */
  10. interface ExportDataHandlerInterface
  11. {
  12. /**
  13. * Execute collecting new data for MBI.
  14. *
  15. * @return bool
  16. */
  17. public function prepareExportData();
  18. }