ConfigInterface.php 412 B

12345678910111213141516171819202122
  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. * Interface for Analytics Config.
  9. */
  10. interface ConfigInterface
  11. {
  12. /**
  13. * Get config value by key.
  14. *
  15. * @param string|null $key
  16. * @param string|null $default
  17. * @return array
  18. */
  19. public function get($key = null, $default = null);
  20. }