ConfigInterface.php 376 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Url;
  7. /**
  8. * Url Config Interface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface ConfigInterface
  13. {
  14. /**
  15. * Get url config value by path
  16. *
  17. * @param string $path
  18. * @return mixed
  19. */
  20. public function getValue($path);
  21. }