LinkProviderInterface.php 336 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Analytics\Api;
  7. /**
  8. * Provides link to file with collected report data.
  9. */
  10. interface LinkProviderInterface
  11. {
  12. /**
  13. * @return \Magento\Analytics\Api\Data\LinkInterface
  14. */
  15. public function get();
  16. }