ConfigInterface.php 390 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Analytics\ReportXml;
  7. /**
  8. * Interface ConfigInterface
  9. *
  10. * Interface for ReportXml Config
  11. */
  12. interface ConfigInterface
  13. {
  14. /**
  15. * Config of ReportXml
  16. *
  17. * @param string $queryName
  18. * @return array
  19. */
  20. public function get($queryName);
  21. }